diff options
author | Reinier Zwitserloot <reinier@zwitserloot.com> | 2017-03-06 23:34:23 +0100 |
---|---|---|
committer | Reinier Zwitserloot <reinier@zwitserloot.com> | 2017-03-07 01:12:24 +0100 |
commit | d05d03743316e45abfd0d00397999d7eb959eb64 (patch) | |
tree | bfccd4cc021b83355e49fab83120e8f93e458d69 /src/core/lombok/experimental | |
parent | 8bfbd7fa846537c9393350e02c459c6878c0dec2 (diff) | |
download | lombok-d05d03743316e45abfd0d00397999d7eb959eb64.tar.gz lombok-d05d03743316e45abfd0d00397999d7eb959eb64.tar.bz2 lombok-d05d03743316e45abfd0d00397999d7eb959eb64.zip |
Fixed issue #778: problems with onX if the annotation to be added has named args.
Diffstat (limited to 'src/core/lombok/experimental')
-rw-r--r-- | src/core/lombok/experimental/Wither.java | 14 |
1 files changed, 12 insertions, 2 deletions
diff --git a/src/core/lombok/experimental/Wither.java b/src/core/lombok/experimental/Wither.java index b4131187..3fb767d1 100644 --- a/src/core/lombok/experimental/Wither.java +++ b/src/core/lombok/experimental/Wither.java @@ -60,12 +60,22 @@ public @interface Wither { AccessLevel value() default AccessLevel.PUBLIC; /** - * Any annotations listed here are put on the generated method. The syntax for this feature is: {@code @Setter(onMethod=@__({@AnnotationsGoHere}))} + * Any annotations listed here are put on the generated method. + * The syntax for this feature depends on JDK version (nothing we can do about that; it's to work around javac bugs).<br /> + * up to JDK7:<br /> + * {@code @Wither(onMethod=@__({@AnnotationsGoHere}))}<br /> + * from JDK8:<br /> + * {@code @Wither(onMethod_={@AnnotationsGohere})} // note the underscore after {@code onMethod}. */ AnyAnnotation[] onMethod() default {}; /** - * Any annotations listed here are put on the generated method's parameter. The syntax for this feature is: {@code @Setter(onParam=@__({@AnnotationsGoHere}))} + * Any annotations listed here are put on the generated method's parameter. + * The syntax for this feature depends on JDK version (nothing we can do about that; it's to work around javac bugs).<br /> + * up to JDK7:<br /> + * {@code @Wither(onParam=@__({@AnnotationsGoHere}))}<br /> + * from JDK8:<br /> + * {@code @Wither(onParam_={@AnnotationsGohere})} // note the underscore after {@code onParam}. */ AnyAnnotation[] onParam() default {}; |