blob: 639022d0c444e57dc87f0ca5c11b9edf3d3416b8 (
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
|
class GetterOnMethodErrors2 {
private int bad1;
private int bad2;
private int bad3;
private int bad4;
private int good1;
private int good2;
private int good3;
private int good4;
public @interface Test {
}
@java.lang.SuppressWarnings("all")
public int getBad1() {
return this.bad1;
}
@java.lang.SuppressWarnings("all")
public int getBad2() {
return this.bad2;
}
@Deprecated
@java.lang.SuppressWarnings("all")
public int getBad3() {
return this.bad3;
}
@java.lang.SuppressWarnings("all")
public int getBad4() {
return this.bad4;
}
@java.lang.SuppressWarnings("all")
public int getGood1() {
return this.good1;
}
@java.lang.SuppressWarnings("all")
public int getGood2() {
return this.good2;
}
@Deprecated
@java.lang.SuppressWarnings("all")
public int getGood3() {
return this.good3;
}
@Deprecated
@Test
@java.lang.SuppressWarnings("all")
public int getGood4() {
return this.good4;
}
}
|