KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > jfox > ioc > annotation > Managable


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
7 package org.jfox.ioc.annotation;
8
9 import java.lang.annotation.ElementType JavaDoc;
10 import java.lang.annotation.Retention JavaDoc;
11 import java.lang.annotation.RetentionPolicy JavaDoc;
12 import java.lang.annotation.Target JavaDoc;
13
14 /**
15  *
16  *用来注释一个方法,表示该方法是一个可以被控制台管理的方法
17  * <br>
18  * 注意:使用该注释的类必须集成自:{@link org.jfox.ioc.ext.ManagableComponent}
19  * @see org.jfox.ioc.ext.ManagableComponent
20  * @author <a HREF="mailto:young_yy@hotmail.com">Young Yang</a>
21  */

22
23 @Retention JavaDoc(RetentionPolicy.RUNTIME)
24 @Target JavaDoc({ElementType.METHOD})
25
26 public @interface Managable {
27
28 }
29
Popular Tags