package road;

public class IntTriple {
	   private int x;
	   private int y;
	   private int z;
	   
	IntTriple(int x, int y,  int z) {
		super();
		this.x = x;
		this.y = y;
		this.z = z;
	   }

	protected int getX() {
		return x;
	}

	protected void setX(int x) {
		this.x = x;
	}

	protected int getY() {
		return y;
	}

	protected void setY(int y) {
		this.y = y;
	}
	
	protected int getZ() {
		return z;
	}

	protected void setZ(int z) {
		this.z = z;
	}
	
	@Override
	public String toString() {
		return "IntTriple [x=" + x + ", y=" + y + ", z=" + z + "]";
	}
}
