/* PlotPoint.java */

package regress;

/**
* class PlotPoint wrapper for x,y coordinates
*/

public class PlotPoint extends Object {
	int x, y;

	PlotPoint(int x, int y) {
		this.x=x;
		this.y=y;
		}
}
