KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > jfox > ioc > ext > ManagableComponent


1 /* JFox, the OpenSource J2EE Application Server
2  *
3  * Distributable under GNU LGPL license by gun.org
4  * more details please visit http://www.huihoo.org/jfox
5  */

6 package org.jfox.ioc.ext;
7
8 import org.jfox.ioc.Component;
9
10 /**
11  * 可以被控制台管理的组件,应该实现该接口。
12  * <br><br>
13  * 注意:该接口只是一个申明接口,实现该接口之后,被管理的方法还必须使用 Managable annotation 注释标记
14  *
15  * @author <a HREF="mailto:young_yy@hotmail.com">Young Yang</a>
16  * @see org.jfox.ioc.annotation.Managable
17  */

18
19 public interface ManagableComponent extends Component {
20
21 }
Popular Tags