blob: 706d7b5978540ca74235e0d5f89af69cf8dcb3bc (
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
|
class DataIgnore {
final int x;
String $name;
public DataIgnore(final int x) {
this.x = x;
}
public int getX() {
return x;
}
@java.lang.Override
public boolean equals(final java.lang.Object o) {
if (o == this) return true;
if (o == null) return false;
if (o.getClass() != this.getClass()) return false;
final DataIgnore other = (DataIgnore)o;
if (this.x != other.x) return false;
return true;
}
@java.lang.Override
public int hashCode() {
final int PRIME = 31;
int result = 1;
result = result * PRIME + this.x;
return result;
}
@java.lang.Override
public java.lang.String toString() {
return "DataIgnore(x=" + x + ")";
}
}
|