/*PLEASE DO NOT EDIT THIS CODE*/
/*This code was generated using the UMPLE 1.24.0-dab6b48 modeling language!*/



public class Student
{

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

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

  public Student()
  {}

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

  public void delete()
  {}

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

  }

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

}
