package util;

/**
 * Simple 2-dimensional poitn container.
 * 
 * From: http://www.quakr.net/java/gmaps/
 *
 */
public class SimplePoint {
	private int x = 0;
	private int y = 0;
	
	public SimplePoint(int x, int y) {
		this.x = x;
		this.y = y;
	}
	
	public int getX() {
		return x;
	}
	
	public void setX(int x) {
		this.x = x;
	}
	
	public int getY() {
		return y;
	}
	
	public void setY(int y) {
		this.y = y;
	}
}