//$Id$
//=====================================================================
//
//(history at end)
//
package ch.ethz.prose;
/**
* Class used for method redefinition JUnit test.
*
* @version $Revision$
* @author Angela Nicoara
*/
public class Point {
int x;
private int 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;
}
public String toString() {
return "(" + x + ", " + y + ")";
}
}
//======================================================================
//
// $Log$
//
|