comparison dwtx/jface/text/reconciler/MonoReconciler.d @ 133:7d818bd32d63

Fix ctors to this with gvim regexp
author Frank Benoit <benoit@tionex.de>
date Sun, 24 Aug 2008 01:29:22 +0200
parents c4fb132a086c
children 51e6e63f930e
comparison
equal deleted inserted replaced
132:77bd3bb3d7b8 133:7d818bd32d63
61 * reconcile its document independent of the type of the document's contents. 61 * reconcile its document independent of the type of the document's contents.
62 * 62 *
63 * @param strategy the reconciling strategy to be used 63 * @param strategy the reconciling strategy to be used
64 * @param isIncremental the indication whether strategy is incremental or not 64 * @param isIncremental the indication whether strategy is incremental or not
65 */ 65 */
66 public MonoReconciler(IReconcilingStrategy strategy, bool isIncremental) { 66 public this(IReconcilingStrategy strategy, bool isIncremental) {
67 Assert.isNotNull(strategy); 67 Assert.isNotNull(strategy);
68 fStrategy= strategy; 68 fStrategy= strategy;
69 if (fStrategy instanceof IReconcilingStrategyExtension) { 69 if (fStrategy instanceof IReconcilingStrategyExtension) {
70 IReconcilingStrategyExtension extension= (IReconcilingStrategyExtension)fStrategy; 70 IReconcilingStrategyExtension extension= (IReconcilingStrategyExtension)fStrategy;
71 extension.setProgressMonitor(getProgressMonitor()); 71 extension.setProgressMonitor(getProgressMonitor());