package net.csdn.annotation; import java.lang.annotation.ElementType; import java.lang.annotation.Retention; import java.lang.annotation.RetentionPolicy; import java.lang.annotation.Target; /** * User: WilliamZhu * Date: 12-7-12 * Time: 下午3:36 */ @Retention(RetentionPolicy.RUNTIME) @Target(ElementType.FIELD) public @interface Scope { }