/*
 * This class circle is a driver class for the thing class
 * 
 *@author Daniel Heck heckds@jmu.edu
 *@version 1.0 9/17/08
 */
public class ThingDriver
{
	public static void main(String[] args)
	{
		Thing		one;		//Declare 1st thing object
		Thing		two;		//Declare 2nd thing object
		Thing		three;	//Declare 3rd thing object
		
		one = new Thing();	//Instantiate one Thing Object
		one.putThing(15);		//send 15 to object one
		
		two = new Thing();	//Instantiate two Thing Object
		two.putThing(27);		//send 27 to object two
		
		three = new Thing(); //Instantiate three Thing Object
		three.putThing(35);		//send 35 to object three
		
		//Print off Output state then indiviually call all the instances of the variables for X
		System.out.println
		("All the different values of X: 1: " + one.getX() + " 2: " + two.getX() + " 3: " + three.getX());
		//Print off Output state then indiviually call all the instances of the variables for X
		System.out.println
		("All the different values of Y: 1: " + one.getY() + " 2: " + two.getY() + " 3: " + three.getY());
		//Print off Output state then indiviually call all the instances of the variables for Z
		System.out.println
		("All the different values of Z: 1: " + one.getZ() + " 2: " + two.getZ() + " 3: " + three.getZ());
		//Because Z is static is never changed and is the same for all instances			
	}//end main
}//end Class