View Javadoc

1   package fr.ove.openmath.courses.editor.events;
2   
3   import java.util.EventListener;
4   import fr.ove.openmath.courses.editor.events.EditorEvent;
5   
6   /***
7   * The interface that an object which want to be alerted of the changes of an editor
8   * must implement.
9   *
10  * @author © 1999 DIRAT Laurent
11  * @version 1.0  21/04/99
12  */
13  public interface EditorListener extends EventListener {
14      /***
15      * Consumes (i.e. treats) the event received.
16      * @param editorEvent the event to consume.
17      */
18      public void consumeEditorEvent(EditorEvent editorEvent);
19  }