KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > jfun > yan > xml > nuts > LifecycleDeclaration


1 package jfun.yan.xml.nuts;
2
3 import jfun.yan.xml.Location;
4 import jfun.yan.xml.NutEnvironment;
5
6 /**
7  * Any nut that supports declarative lifecycle functions.
8  * <p>
9  * @author Ben Yu
10  * Nov 20, 2005 8:09:41 PM
11  */

12 public interface LifecycleDeclaration {
13   String JavaDoc getInitializer();
14   String JavaDoc getStarter();
15   String JavaDoc getStopper();
16   String JavaDoc getDisposer();
17   Location getTagLocation();
18   NutEnvironment getNutEnvironment();
19 }
20
Popular Tags