blob: 152cb372d310757abca45cb355c39b43850c267a (
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
|
class Getter1 {
boolean foo;
boolean hasFoo() {
return true;
}
}
class Getter2 {
boolean foo;
boolean isFoo() {
return true;
}
}
class Getter3 {
boolean foo;
boolean getFoo() {
return true;
}
}
class Getter4 {
String foo;
String hasFoo() {
return null;
}
public String getFoo() {
return foo;
}
}
class Getter5 {
String foo;
String isFoo() {
return null;
}
public String getFoo() {
return foo;
}
}
class Getter6 {
String foo;
String getFoo() {
return null;
}
}
class Getter7 {
String foo;
boolean hasFoo() {
return false;
}
public String getFoo() {
return foo;
}
}
class Getter8 {
String foo;
boolean isFoo() {
return false;
}
public String getFoo() {
return foo;
}
}
class Getter9 {
String foo;
boolean getFoo() {
return false;
}
}
|