01: package org.codehaus.aspectwerkz.annotation;
02:
03: import java.lang.annotation.Target;
04: import java.lang.annotation.ElementType;
05: import java.lang.annotation.Retention;
06: import java.lang.annotation.RetentionPolicy;
07:
08: /**
09: * @author <a href="mailto:alex@gnilux.com">Alexandre Vasseur</a>
10: */
11: @Target({ElementType.ANNOTATION_TYPE,ElementType.TYPE,ElementType.FIELD})
12: @Retention(RetentionPolicy.RUNTIME)
13: public @interface Introduce {
14: String value();
15: }
|