/**
* 
* @author Yanitsa Staleva
* @date: 09/17/08
* section 2 
* Lab 8
*/


public class Thing
{
  private int x;
  private int y;
  private static int z = 23;
  
  /**
  * constructor that 
  * sets x and y equal to z
  **/
  public Thing()
  {
    this.x = z;
	 this.y = z;
  }
  
 /**
  * this method returns the 
  * x for the object
  * 
  *@return x
  **/
	public int getX ()
	{
	  return this.x;
	}
	
 /**
  * this method returns 
  * y for the object
  *
  * @return y
  **/
	public int getY ()
	{
	  return this.y;
	 }
	 
 /**
  *
  **/
	 public int getZ()
	 {
	   return this.z;
    }
	 
 /**
  * This method sets z 
  * to some other int
  *
  * @param int a
  **/
	static void putThing (int a)
	{
	   z = a;
	}
}