blob: 8389ae3178ef7eedfce816834b3523d90c1fdfb0 (
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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
|
class Getter1 {
boolean foo;
boolean hasFoo() {
return true;
}
@java.lang.SuppressWarnings("all")
public boolean isFoo() {
return this.foo;
}
}
class Getter2 {
boolean foo;
boolean isFoo() {
return true;
}
}
class Getter3 {
boolean foo;
boolean getFoo() {
return true;
}
}
class Getter4 {
String foo;
String hasFoo() {
return null;
}
@java.lang.SuppressWarnings("all")
public String getFoo() {
return this.foo;
}
}
class Getter5 {
String foo;
String isFoo() {
return null;
}
@java.lang.SuppressWarnings("all")
public String getFoo() {
return this.foo;
}
}
class Getter6 {
String foo;
String getFoo() {
return null;
}
}
class Getter7 {
String foo;
boolean hasFoo() {
return false;
}
@java.lang.SuppressWarnings("all")
public String getFoo() {
return this.foo;
}
}
class Getter8 {
String foo;
boolean isFoo() {
return false;
}
@java.lang.SuppressWarnings("all")
public String getFoo() {
return this.foo;
}
}
class Getter9 {
String foo;
boolean getFoo() {
return false;
}
}
class Getter10 {
boolean foo;
static boolean hasFoo() {
return false;
}
@java.lang.SuppressWarnings("all")
public boolean isFoo() {
return this.foo;
}
}
class Getter11 {
boolean foo;
static boolean isFoo() {
return false;
}
}
class Getter12 {
boolean foo;
static boolean getFoo() {
return false;
}
}
class Getter13 {
String foo;
static boolean hasFoo() {
return false;
}
@java.lang.SuppressWarnings("all")
public String getFoo() {
return this.foo;
}
}
class Getter14 {
String foo;
static boolean isFoo() {
return false;
}
@java.lang.SuppressWarnings("all")
public String getFoo() {
return this.foo;
}
}
class Getter15 {
String foo;
static boolean getFoo() {
return false;
}
}
class Getter16 {
String foo;
static String hasFoo() {
return "";
}
@java.lang.SuppressWarnings("all")
public String getFoo() {
return this.foo;
}
}
class Getter17 {
String foo;
static String isFoo() {
return "";
}
@java.lang.SuppressWarnings("all")
public String getFoo() {
return this.foo;
}
}
class Getter18 {
String foo;
static String getFoo() {
return "";
}
}
|