blob: 67f8c8c83319da8dd6d0fa7c234b386b4e6b6540 (
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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
|
//version :7
public class OnXJava7Style {
@interface Foo {
String value() default "";
}
@interface Bar {
String stuff() default "";
}
@interface Array {
String[] value() default {};
}
String a;
String b;
String c;
String d;
String e;
String f;
String g;
String h;
String i;
@Foo
@java.lang.SuppressWarnings("all")
public String getA() {
return this.a;
}
@Foo
@java.lang.SuppressWarnings("all")
public void setB(final String b) {
this.b = b;
}
@java.lang.SuppressWarnings("all")
public void setC(@Foo("a") final String c) {
this.c = c;
}
@java.lang.SuppressWarnings("all")
public void setD(@Bar(stuff = "b") final String d) {
this.d = d;
}
@Foo("c")
@Bar(stuff = "d")
@java.lang.SuppressWarnings("all")
public String getE() {
return this.e;
}
@Array
@java.lang.SuppressWarnings("all")
public String getF() {
return this.f;
}
@Array
@java.lang.SuppressWarnings("all")
public String getG() {
return this.g;
}
@Array({})
@java.lang.SuppressWarnings("all")
public String getH() {
return this.h;
}
@Array({"a", "b"})
@java.lang.SuppressWarnings("all")
public String getI() {
return this.i;
}
}
|