Package jade.util.leap

Examples of jade.util.leap.Set


   * @param onto the ontology
   * @return the Set
   * @throws OntologyException
   */
  public static Set internaliseSet(AbsAggregate aggregate, Ontology onto) throws OntologyException {
    Set ret = new HashSet();

    for (int i = 0; i < aggregate.size(); i++) {
      Object element = onto.toObject(aggregate.get(i));
      // Check if the element is a Term, a primitive an AID or a List
      Ontology.checkIsTerm(element);
      ret.add(element);
    }

    return ret;
  }
View Full Code Here

TOP

Related Classes of jade.util.leap.Set

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.