blob: f3a58d79d4fa4ab8ecef04ff24fb654953839ad4 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
|
//version :7
public class OnXJava7Style {
@interface Foo {
String value() default "";
}
@interface Bar {
String stuff() default "";
}
String a;
String b;
String c;
String d;
String e;
@Foo
@java.lang.SuppressWarnings("all")
@javax.annotation.Generated("lombok")
public String getA() {
return this.a;
}
@Foo
@java.lang.SuppressWarnings("all")
@javax.annotation.Generated("lombok")
public void setB(final String b) {
this.b = b;
}
@java.lang.SuppressWarnings("all")
@javax.annotation.Generated("lombok")
public void setC(@Foo("a") final String c) {
this.c = c;
}
@java.lang.SuppressWarnings("all")
@javax.annotation.Generated("lombok")
public void setD(@Bar(stuff = "b") final String d) {
this.d = d;
}
@Foo("c")
@Bar(stuff = "d")
@java.lang.SuppressWarnings("all")
@javax.annotation.Generated("lombok")
public String getE() {
return this.e;
}
}
|