comparison dwtx/jface/text/reconciler/AbstractReconcileStep.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 f70d9508c95c
comparison
equal deleted inserted replaced
132:77bd3bb3d7b8 133:7d818bd32d63
53 * Creates an intermediate reconcile step which adds 53 * Creates an intermediate reconcile step which adds
54 * the given step to the pipe. 54 * the given step to the pipe.
55 * 55 *
56 * @param step the reconcile step 56 * @param step the reconcile step
57 */ 57 */
58 public AbstractReconcileStep(IReconcileStep step) { 58 public this(IReconcileStep step) {
59 Assert.isNotNull(step); 59 Assert.isNotNull(step);
60 fNextStep= step; 60 fNextStep= step;
61 fNextStep.setPreviousStep(this); 61 fNextStep.setPreviousStep(this);
62 } 62 }
63 63
64 /** 64 /**
65 * Creates the last reconcile step of the pipe. 65 * Creates the last reconcile step of the pipe.
66 */ 66 */
67 public AbstractReconcileStep() { 67 public this() {
68 } 68 }
69 69
70 public bool isLastStep() { 70 public bool isLastStep() {
71 return fNextStep is null; 71 return fNextStep is null;
72 } 72 }