KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > JSci > awt > GraphDataListener


1 package JSci.awt;
2
3 import java.util.EventListener JavaDoc;
4
5 /**
6 * GraphDataListener.
7 * @version 1.0
8 * @author Mark Hale
9 */

10 public interface GraphDataListener extends EventListener JavaDoc {
11         /**
12         * Sent when the contents of the model has changed.
13         */

14         void dataChanged(GraphDataEvent e);
15 }
16
17
Popular Tags