/**********
* Thing.java- this class represents a thing object
*
* @author Travis Tucker
* @version 9/17/08
**********/
public class Thing
{
  private int x;
  private int y;
  private static int z = 23;
/**********
* Thing- this sets the values of x and y
*
**********/
  public Thing()
  {
    this.x = z;
	 this.y = z;
  }//end constructor
  
/**********
* getX- this gets the value of x
*
*@return the value of x
**********/	
	public int getX ()
	{
	  return this.x;
	}//end getX
	
/**********
* getY- this gets the value of y
*
*@return the value of y
**********/
	public int getY ()
	{
	  return this.y;
	}//end getY
	
/**********
* getZ- this gets the value of z
*
*@return the value of z
**********/	
	 public int getZ()
	 {
	   return this.z;
    }//end getZ
/**********
* putThing- this changes the value of z
*
**********/
	static void putThing (int a)
	{
	   z = a;
	}//end putThing
	
}//end class