001
002 package gui;
003
004 /**
005 * Interface to send TSP model events back to the GUI.
006 * @author Heinz Kredel.
007 */
008 public interface TSPguiUpdate {
009
010 public void modelUpdated();
011
012 public void modelStatus();
013
014 }