Fixed issue #778: problems with onX if the annotation to be added has named args.

This commit is contained in:
Reinier Zwitserloot
2017-03-06 23:34:23 +01:00
parent 8bfbd7fa84
commit d05d037433
35 changed files with 489 additions and 112 deletions
@@ -0,0 +1,16 @@
//version 8:
public class OnXJava8Style {
@interface Foo {
String value() default "";
}
@interface Bar {
String stuff() default "";
}
@lombok.Getter(onMethod_=@Foo) String a;
@lombok.Setter(onMethod_=@Foo()) String b;
@lombok.Setter(onParam_=@Foo("a")) String c;
@lombok.Setter(onParam_=@Bar(stuff="b")) String d;
@lombok.Getter(onMethod_={@Foo(value="c"), @Bar(stuff="d")}) String e;
}