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

package example;

public class BoolTest
{

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

  //BoolTest Attributes
  private boolean test;

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

  public BoolTest(boolean aTest)
  {
    test = aTest;
  }

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

  public boolean setTest(boolean aTest)
  {
    boolean wasSet = false;
    test = aTest;
    wasSet = true;
    return wasSet;
  }

  public boolean isTest()
  {
    return test;
  }
  
  public boolean getTest()
  {
    return test;
  }

  public void delete()
  {}

}
