function Point()
{
	var self = this;
	
	this.Label;
	this.X;
	this.Y;
	
	this.getLabel = getLabel;
	this.getX = getX;
	this.getY = getY;
	this.setLabel = setLabel;
	this.setX = setX;
	this.setY = setY;
	
	function getLabel()
	{
		return self.Label;
	}
	
	function getX()
	{
		return self.X;
	}
	
	function getY()
	{
		return self.Y;
	}
	
	function setLabel(label)
	{
		self.Label = label;
	}
	
	function setX(x)
	{
		self.X = x;
	}
	
	function setY(y)
	{
		self.Y = y;
	}
}