KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > jfox > test > IUser


1 /*
2  * JFox - The most lightweight Java EE Application Server!
3  * more details please visit http://www.huihoo.org/jfox or http://www.jfox.org.cn.
4  *
5  * JFox is licenced and re-distributable under GNU LGPL.
6  */

7 package jfox.test;
8
9 import org.jfox.framework.component.Component;
10 import org.jfox.framework.component.ComponentInitialization;
11 import org.jfox.framework.annotation.Exported;
12
13 /**
14  * @author <a HREF="mailto:jfox.young@gmail.com">Yang Yong</a>
15  */

16 @Exported
17 public interface IUser extends Component, ComponentInitialization {
18
19     String JavaDoc getName();
20
21 }
22
Popular Tags