From c8774389e7cb73e494267af3a87f70c7497b220a Mon Sep 17 00:00:00 2001 From: Roel Spilker Date: Wed, 10 Nov 2010 20:38:42 +0100 Subject: Made AnyAnnotation deprecated --- src/core/lombok/Getter.java | 6 ++++-- src/core/lombok/Setter.java | 8 +++++--- 2 files changed, 9 insertions(+), 5 deletions(-) (limited to 'src') diff --git a/src/core/lombok/Getter.java b/src/core/lombok/Getter.java index 2c686595..7e545ae0 100644 --- a/src/core/lombok/Getter.java +++ b/src/core/lombok/Getter.java @@ -58,16 +58,18 @@ public @interface Getter { * If you want your setter to be non-public, you can specify an alternate access level here. */ lombok.AccessLevel value() default lombok.AccessLevel.PUBLIC; - + /** * If you want your getter method to have additional annotations, you can specify them here.
- * If the {code @Getter} is put on a type, {code onMethod} may not be specified. + * If the {@code @Getter} is put on a type, {@code onMethod} may not be specified. */ AnyAnnotation[] onMethod() default {}; /** * Placeholder annotation to enable the placement of annotations on the getter method. + * @deprecated Don't use this annotation, since we might remove it. */ + @Deprecated @Retention(RetentionPolicy.SOURCE) @interface AnyAnnotation {} } diff --git a/src/core/lombok/Setter.java b/src/core/lombok/Setter.java index cd549fed..8c78bbb3 100644 --- a/src/core/lombok/Setter.java +++ b/src/core/lombok/Setter.java @@ -58,19 +58,21 @@ public @interface Setter { /** * If you want your setter method to have additional annotations, you can specify them here. - * If the {code @Setter} is put on a type, {code onMethod} may not be specified. + * If the {@code @Setter} is put on a type, {@code onMethod} may not be specified. */ AnyAnnotation[] onMethod() default {}; /** * If you want the parameter of your setter to have additional annotations, you can specify them here. - * If the {code @Setter} is put on a type, {code onParam} may not be specified. + * If the {@code @Setter} is put on a type, {@code onParam} may not be specified. */ AnyAnnotation[] onParam() default {}; /** - * Placeholder annotation to enable the placement of annotations on the setter method or its parameter. + * Placeholder annotation to enable the placement of annotations on the setter method or its parameter. + * @deprecated Don't use this annotation, since we might remove it. */ + @Deprecated @Retention(RetentionPolicy.SOURCE) @interface AnyAnnotation {} } \ No newline at end of file -- cgit