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

class Student
{

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

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

  public function __construct()
  {}

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

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

  public function delete()
  {}

  public function foo(int a)
  {
    if(a < 0) {      
      System.out.println("Returning from foo, a: " + a);
      return 4;
    }    
    System.out.println("Returning from foo, a: " + a);
    return 3;

  }

  public function foo(int a, String b)
  {
    if(a > 0 && "".equals(b)) {      
      System.out.println("Returning from foo, a: " + a ", b: " + b);
      return 3;
    }    
    System.out.println("Returning from foo, a: " + a ", b: " + b);
    return 1;
  }

}
?>
