Package org.jazzteam.ModelHuman

Examples of org.jazzteam.ModelHuman.Gout


  @Test
  public void test() {
    human = new Human();
    human.beBorn();
    human.getSick(new Gout(human));
    human.takeMedicine(new Rimantadine(human));
    human.getSick(new Myocarditis(human));
    human.getSick(new Tendinitis(human));
    human.takeMedicine(new Ibuprofen(human));
    human.feelingKnow();
View Full Code Here

TOP

Related Classes of org.jazzteam.ModelHuman.Gout

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.