1 /* JFox, the OpenSource J2EE Application Server2 *3 * Distributable under GNU LGPL license by gun.org4 * more details please visit http://www.huihoo.org/jfox5 */6 7 package org.jfox.ioc.annotation;8 9 import java.lang.annotation.ElementType ;10 import java.lang.annotation.Retention ;11 import java.lang.annotation.RetentionPolicy ;12 import java.lang.annotation.Target ;13 14 /**15 *16 *用来注释一个方法,表示该方法是一个可以被控制台管理的方法17 * <br>18 * 注意:使用该注释的类必须集成自:{@link org.jfox.ioc.ext.ManagableComponent}19 * @see org.jfox.ioc.ext.ManagableComponent20 * @author <a HREF="mailto:young_yy@hotmail.com">Young Yang</a>21 */22 23 @Retention (RetentionPolicy.RUNTIME)24 @Target ({ElementType.METHOD})25 26 public @interface Managable {27 28 }29