01: package net.xoetrope.xui;
02:
03: /**
04: * An interface that allows applications to add to the startup and shutdown
05: * functionality.
06: *
07: * <p> Copyright (c) Xoetrope Ltd., 2002-2004</p>
08: * <p> $Revision: 1.1 $</p>
09: * <p> License: see License.txt</p>
10: */
11: public interface XLifeCycleListener {
12: /**
13: * Called when the application/applet has been created and initialized.
14: */
15: public void initialize();
16:
17: /**
18: * Called when the application/applet has been shutdown and is about to exit
19: */
20: public void shutdown();
21: }
|