01: /**
02: * @author garethc
03: * 11/11/2002 11:34:28
04: */package vqwiki;
05:
06: import java.util.EventListener;
07:
08: /**
09: * Interface for listening for topic changes
10: */
11: public interface TopicListener extends EventListener {
12:
13: /**
14: * Fired when a topic is saved
15: * @param event event with information
16: */
17: public void topicSaved(TopicSavedEvent event);
18: }
|