package implementation.source.java.nodes; import edu.umd.cs.piccolox.util.PLocator; /* * Created on Jan 23, 2006 * * TODO To change the template for this generated file go to * Window - Preferences - Java - Code Style - Code Templates */ /** * @author Timothy Ober * * TODO To change the template for this generated type comment go to * Window - Preferences - Java - Code Style - Code Templates */ public class SetXYLocator extends PLocator { private double x; private double y; public SetXYLocator() { super(); } public double locateX() {return x;} public double locateY() {return y;} public void setX(double in) {x = in;} public void setY(double in) {y = in;} }