blob: 37ae83a48da2b49d383c8cb6f3ef2839a3ad5ab7 (
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
|
class GetterOnMethod {
int i;
int j;
int k;
public @interface Test {
}
@Deprecated
@java.lang.SuppressWarnings("all")
@javax.annotation.Generated("lombok")
public int getI() {
return this.i;
}
@java.lang.Deprecated
@Test
@java.lang.SuppressWarnings("all")
@javax.annotation.Generated("lombok")
public int getJ() {
return this.j;
}
@java.lang.Deprecated
@Test
@java.lang.SuppressWarnings("all")
@javax.annotation.Generated("lombok")
public int getK() {
return this.k;
}
}
|