package de.vksi.c4j.acceptancetest.point.pitfalls;
import de.vksi.c4j.acceptancetest.object.ObjectSpec;
public class PointPFEclipseGen implements ObjectSpec {
private int x;
private int y;
public PointPFEclipseGen(int x, int y) {
this.x = x;
this.y = y;
}
public int getX() {
return x;
}
public int getY() {
return y;
}
public void setX(int x) {
this.x = x;
}
public void setY(int y) {
this.y = y;
}
@Override
public int hashCode() {
final int prime = 31;
int result = 1;
result = prime * result + x;
result = prime * result + y;
return result;
}
@Override
public boolean equals(Object obj) {
if (this == obj)
return true;
if (obj == null)
return false;
if (getClass() != obj.getClass())
return false;
PointPFEclipseGen other = (PointPFEclipseGen) obj;
if (x != other.x)
return false;
if (y != other.y)
return false;
return true;
}
}