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

class BoolTest
{

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

  //BoolTest Attributes
  private $test;

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

  public function __construct($aTest)
  {
    $this->test = $aTest;
  }

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

  public function setTest($aTest)
  {
    $wasSet = false;
    $this->test = $aTest;
    $wasSet = true;
    return $wasSet;
  }

  public function getTest()
  {
    return $this->test;
  }

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

  public function delete()
  {}

}
?>
