1 package net.sourceforge.importscrubber; 2 3 /** 4 5 * Defines the behavior of by an object which wishes 6 7 * to be notified when a task is started or completed. 8 9 */ 10 11 public interface IProgressMonitor 12 13 { 14 15 public void taskStarted(ScrubTask task); 16 17 public void taskComplete(ScrubTask task); 18 19 } 20 21 22 23 24 25 26 27 28 29 30 31