1 2 3 4 5 6
import java.lang.annotation.*; @Target({ElementType.FIELD, ElementType.TYPE, ElementType.METHOD}) public @interface Attribute { String value() default ""; }