package agg.gui.parser.event; import java.util.EventListener; /** * Listens to all messages of the status bar. * * @version $Id: StatusMessageListener.java,v 1.2 2007/09/10 13:05:50 olga Exp $ * @author $Author: olga $ */ public interface StatusMessageListener extends EventListener { /** * Receives a message for the status bar * * @param sme * The new message */ public void newMessage(StatusMessageEvent sme); } /* * $Log: StatusMessageListener.java,v $ * Revision 1.2 2007/09/10 13:05:50 olga * In this update: * - package xerces2.5.0 is not used anymore; * - class com.objectspace.jgl.Pair is replaced by the agg own generic class agg.util.Pair; * - bugs fixed in: usage of PACs in rules; match completion; * usage of static method calls in attr. conditions * - graph editing: added some new features * Revision 1.1 2005/08/25 11:56:59 enrico * *** empty log message *** * * Revision 1.1 2005/05/30 12:58:04 olga Version with Eclipse * * Revision 1.1.1.1 2002/07/11 12:17:21 olga Imported sources * * Revision 1.2 2001/03/08 11:03:16 olga er Anbindung gema Stand nach AGG GUI * Reimplementierung. Stand nach der AGG GUI Reimplementierung.Das ist Stand * nach der AGG GUI Reimplementierung und Parser Anbindung. * * Revision 1.1.2.3 2001/01/28 13:14:50 shultzke API fertig * * Revision 1.1.2.2 2000/12/10 14:55:47 shultzke um Layer erweitert * * Revision 1.1.2.1 2000/08/10 12:22:31 shultzke Einige Klassen wurden * umbenannt. Alle Events sind in ein eigenes Eventpackage geflogen. * * Revision 1.1.2.1 2000/07/09 17:12:49 shultzke grob die GUI eingebunden * */