Package javaff.data.strips

Examples of javaff.data.strips.SimpleType


  private void buildTypeSets() // builds typeSets for easy access of all the objects of a particular type
  {
    Iterator tit = types.iterator();
    while (tit.hasNext())
    {
      SimpleType st = (SimpleType) tit.next();
      Set s = new HashSet();
      typeSets.put(st, s);

      Iterator oit = objects.iterator();
      while (oit.hasNext())
View Full Code Here

TOP

Related Classes of javaff.data.strips.SimpleType

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.