comparison dwtx/jface/text/reconciler/MonoReconciler.d @ 162:1a5b8f8129df

...
author Frank Benoit <benoit@tionex.de>
date Mon, 08 Sep 2008 00:51:37 +0200
parents b6bad70d540a
children
comparison
equal deleted inserted replaced
161:f8d52b926852 162:1a5b8f8129df
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 this(IReconcilingStrategy strategy, bool isIncremental) { 66 public this(IReconcilingStrategy strategy, bool isIncremental) {
67 Assert.isNotNull(strategy); 67 Assert.isNotNull(cast(Object)strategy);
68 fStrategy= strategy; 68 fStrategy= strategy;
69 if ( cast(IReconcilingStrategyExtension)fStrategy ) { 69 if ( cast(IReconcilingStrategyExtension)fStrategy ) {
70 IReconcilingStrategyExtension extension= cast(IReconcilingStrategyExtension)fStrategy; 70 IReconcilingStrategyExtension extension= cast(IReconcilingStrategyExtension)fStrategy;
71 extension.setProgressMonitor(getProgressMonitor()); 71 extension.setProgressMonitor(getProgressMonitor());
72 } 72 }