1
2
3
4
5 package xjavadoc.event;
6
7 import java.util.EventListener;
8
9 /***
10 * Describe what this class does
11 *
12 * @author Aslak Hellesøy
13 * @created 30. januar 2002
14 * @todo-javadoc Write javadocs for interface
15 */
16 public interface XTagListener extends EventListener
17 {
18 /***
19 * notify abou tag change
20 *
21 * @param event Describe what the parameter does
22 * @todo-javadoc Write javadocs for method
23 * @todo-javadoc Write javadocs for method parameter
24 */
25 void tagChanged( XTagEvent event );
26 }