/*
 * This class circle is a class that 
 *
 *@author Daniel Heck heckds@jmu.edu
 *@version 1.1 9/17/08
 */
public class Thing
{
  private int x;	//declare int value x
  private int y;	//declare int value y
  private static int z = 23; //declare a static integer z and initialize
  
  /*
   *Constructer method reassigning varibles when called;
	*/
  public Thing()
  {
    this.x = z;
	 this.y = z;
  }//end Contructer
  
  /*
   *A retreiver method returns int x
	*@return x : Returns the int value of x
	*/
  public int getX ()
  {
	  return this.x;
  }//end getX
  
  /*
   *A retreiver method returns int y
	*@return y : Returns the int value of y
	*/
  public int getY ()
  {
	  return this.y;
  }//end getY
  
  /*
   *A retreiver method returns int z
	*@return z : Returns the int value of z
	*/
  public int getZ()
  {
	   return this.z;
  }//end getZ
  /*
   *@param a takes in a int value set at a and reassign it
   */
  static void putThing (int a)
  {
	   z = a;
  }//end putThing
}//end class