blob: 0c18170b5aa6ec5c49a6bc853ebdc17787bc822f (
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
|
class GetterOnMethod {
int i;
int j;
@Deprecated
@java.lang.SuppressWarnings("all")
public int getI() {
return this.i;
}
@java.lang.Deprecated
@java.lang.SuppressWarnings("all")
public int getJ() {
return this.j;
}
}
class GetterOnClassOnMethod {
int i;
int j;
@java.lang.SuppressWarnings("all")
public int getI() {
return this.i;
}
@java.lang.SuppressWarnings("all")
public int getJ() {
return this.j;
}
}
class GetterOnClassAndOnAField {
int i;
int j;
@java.lang.SuppressWarnings("all")
public int getI() {
return this.i;
}
@java.lang.Deprecated
@java.lang.SuppressWarnings("all")
public int getJ() {
return this.j;
}
}
|