public class PivotMachineGun extends Thread
{
	//global variables
	Obj trackedObj;
	Obj openFire;
        public boolean active;
	private boolean getIdentity;
	
	public Identity()
	{
		getIdentity = false;
		active = true;
	}
	
	public void targetObj( Obj  pObj)
	{	
		while(active)
                {
    			trackedObj = pObj;
                }
	}

        private boolean getIdentity( Obj  pObj)
        {
              boolean confirmedID = false
              if (confirmedID)
              {
                   return true;
              }
              else
              {
		  openFire = pObj();
                  return false;
              }
        }

        public boolean getMeatbag()
	{
		return getIdentity;
	}	      
	//method of class PivotMachineGun
	
	public static class Debug
	{
		public static void main(String args[])
		{
                   	PivotMachineGun pg = new PivotMachineGun();
			boolean running = true;
			String input = "";
			java.io.BufferedReader cin = new java.io.BufferedReader(new 			java.io.InputStreamReader(System.in));
			pg.start();
			while(running)
			{
				System.out.println(pg.getIdentity());
				/*try{input = cin.readLine();}catch(Exception e){System.out.println(e);}
				System.out.println(input);
				if(input == "end")
				{
					running = false;
					System.out.println("end flag active");				
				}*/
			}
			pg.active = false;
			return;  
		}
	}
}