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

class Tracer
{

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

  //Tracer Attributes
  private $x;

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

  public function __construct($aX)
  {
    $this->x = $aX;
  }

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

  public function setX($aX)
  {
    $wasSet = false;
    if( $x == 100 )
    {
      StringTracer::execute("x={$aX}");
    }
    $this->x = $aX;
    $wasSet = true;
    return $wasSet;
  }

  public function getX()
  {
    return $this->x;
  }

  public function equals($compareTo)
  {
    return $this == $compareTo;
  }

  public function delete()
  {}

}
?>
