Package interfaces

Examples of interfaces.Person2


   
  }
 
  @JExercise(description = "Tests \n\t\tthe following sequence:\n\t\t<ul>\n\t\t<li>person2.givenName = j</li>\n\t\t</ul>\n")
  public void testPerson2() {
    Person2 person2 = _init__person2_person2();
    _test__person2_transitions0_effect_state(person2);
    _transition_exprAction__person2_transitions1_actions0(person2);
    _test__person2_transitions1_effect_state(person2);
   
  }
View Full Code Here


 
  @JExercise(description = "Tests \n\t\tinitialization\n")
  public void testNamedComparator() {
    NamedComparator namedComparator = _init__namedComparator_namedComparator();
    Person1 ht = _init__namedComparator_ht();
    Person2 jt = _init__namedComparator_jt();
    _test__namedComparator_transitions0_effect_state(namedComparator, ht, jt);
   
  }
View Full Code Here

  }
 
  private Person2 _init__person2_person2() {
    String _plus = (this.h + " ");
    String _plus_1 = (_plus + this.t);
    Person2 _person2 = new Person2(_plus_1);
    return _person2;
  }
View Full Code Here

  }
 
  private Person2 _init__namedComparator_jt() {
    String _plus = (this.j + " ");
    String _plus_1 = (_plus + this.t);
    Person2 _person2 = new Person2(_plus_1);
    return _person2;
  }
View Full Code Here

TOP

Related Classes of interfaces.Person2

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.