/*PLEASE DO NOT EDIT THIS CODE*/
/*This code was generated using the UMPLE @UMPLE_VERSION@ modeling language!*/

package example;

public class Tracer
{

  //------------------------
  // MEMBER VARIABLES
  //------------------------

  //Tracer Attributes
  private String x;

  //------------------------
  // CONSTRUCTOR
  //------------------------

  public Tracer(String aX)
  {
    x = aX;
  }

  //------------------------
  // INTERFACE
  //------------------------

  public boolean setX(String aX)
  {
    boolean wasSet = false;
    x = aX;
    wasSet = true;
    System.out.println("x=" + aX);
    return wasSet;
  }

  public String getX()
  {
    return x;
  }

  public void delete()
  {}

}
