1 /*2 * Copyright (c) 2004 Your Corporation. All Rights Reserved.3 */4 5 package org.jfox.ioc.annotation;6 7 import java.lang.annotation.ElementType ;8 import java.lang.annotation.Retention ;9 import java.lang.annotation.RetentionPolicy ;10 import java.lang.annotation.Target ;11 12 /**13 *14 *用来注释一个方法,表示该方法是一个可以被拦截的方法15 * <br>16 * 注意:使用该注释的类必须集成自:{@link org.jfox.ioc.ext.ManagableComponent}17 * @see org.jfox.ioc.ext.ManagableComponent18 * @author <a HREF="mailto:young_yy@hotmail.com">Young Yang</a>19 */20 21 @Retention (RetentionPolicy.RUNTIME)22 @Target ({ElementType.METHOD})23 public @interface Interceptable {24 25 }26