Package trees

Examples of trees.MileStoneTree


  public Person(String firstName, String lastName, MileStone m)
  {
    this.firstName = firstName;
    this.lastName = lastName;

    this.lifeHistory = new MileStoneTree(m);
  }
View Full Code Here


  public Person(String firstName, String lastName, Vector<MileStone> list)
  {
    this.firstName = firstName;
    this.lastName = lastName;
    this.lifeHistory = new MileStoneTree(list);
  }
View Full Code Here

TOP

Related Classes of trees.MileStoneTree

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.