Changeset 3:296778dfdf6d for com.goldenhammers.merclipse/src/com/goldenhammers/merclipse/utils/MercurialOperationMonitor.java
Legend:
- Unmodified
- Added
- Removed
-
com.goldenhammers.merclipse/src/com/goldenhammers/merclipse/utils/MercurialOperationMonitor.java
r0 r3 18 18 */ 19 19 public class MercurialOperationMonitor implements IMercurialOperationMonitor { 20 20 21 private boolean finished; 22 23 public MercurialOperationMonitor() { 24 this.finished = false; 25 } 26 21 27 public void handleLine(String line) throws MercurialException { 22 28 if (line.startsWith(MercurialUtils.ERROR_INDICATOR)) { … … 32 38 protected void handleCleanLine(String line) throws MercurialException {} 33 39 34 public void operationFinished() {} 40 public void operationFinished() { 41 finished = true; 42 } 43 44 public boolean isFinished() { 45 return finished; 46 } 35 47 36 48 }
