KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > tests > jfun > yan > testmodel > SimpleResource


1 /*
2  * Created on Mar 16, 2005
3  *
4  * Author Ben Yu
5  * ZBS
6  */

7 package tests.jfun.yan.testmodel;
8
9 /**
10  * Zephyr Business Solution
11  *
12  * @author Ben Yu
13  *
14  */

15 public interface SimpleResource {
16   void initialize();
17   void destroy();
18   boolean isInitialized();
19   boolean isDestroyed();
20 }
21
Popular Tags