  public boolean setX(String aX)
  {
    boolean wasSet = false;
    FileTracer.handle( System.currentTimeMillis()+","+Thread.currentThread().getId()+",TraceAttributeWildcard.ump,8,Tracer,"+System.identityHashCode(this)+",at_s,x,"+x+","+(""+aX).toString().replace("\n","").replace(",",";") );
    x = aX;
    wasSet = true;
    return wasSet;
  }

  public boolean setY(String aY)
  {
    boolean wasSet = false;
    FileTracer.handle( System.currentTimeMillis()+","+Thread.currentThread().getId()+",TraceAttributeWildcard.ump,8,Tracer,"+System.identityHashCode(this)+",at_s,y,"+y+","+(""+aY).toString().replace("\n","").replace(",",";") );
    y = aY;
    wasSet = true;
    return wasSet;
  }

  public boolean setZ(String aZ)
  {
    boolean wasSet = false;
    FileTracer.handle( System.currentTimeMillis()+","+Thread.currentThread().getId()+",TraceAttributeWildcard.ump,8,Tracer,"+System.identityHashCode(this)+",at_s,z,"+z+","+(""+aZ).toString().replace("\n","").replace(",",";") );
    z = aZ;
    wasSet = true;
    return wasSet;
  }

  public String getX()
  {
    FileTracer.handle( System.currentTimeMillis()+","+Thread.currentThread().getId()+",TraceAttributeWildcard.ump,8,Tracer,"+System.identityHashCode(this)+",at_g,x,"+x );
    return x;
  }

  public String getY()
  {
    FileTracer.handle( System.currentTimeMillis()+","+Thread.currentThread().getId()+",TraceAttributeWildcard.ump,8,Tracer,"+System.identityHashCode(this)+",at_g,y,"+y );
    return y;
  }

  public String getZ()
  {
    FileTracer.handle( System.currentTimeMillis()+","+Thread.currentThread().getId()+",TraceAttributeWildcard.ump,8,Tracer,"+System.identityHashCode(this)+",at_g,z,"+z );
    return z;
  }
