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