Examples of RelationTO


Examples of org.ontospread.to.RelationTO

    List<RelationTO> relations = new LinkedList<RelationTO>();
      List<ConceptTO> createConceptsFromResources = createConceptsFromResources(getOntModel().listObjectProperties());     
      //FIXME
    //Loading classes
      for (ConceptTO conceptTO : createConceptsFromResources) {
        relations.add(new RelationTO(conceptTO));
    }      
    return relations.toArray(new RelationTO[relations.size()]);
  }
View Full Code Here

Examples of org.ontospread.to.RelationTO

  public RelationTO getRelationTO(String relationUri) throws ConceptNotFoundException {
    OntResource resource = getOntModel().getOntResource(relationUri);
    if(resource == null){
      throw new ConceptNotFoundException("Concept "+relationUri+" can not be built.");
    }
    return new RelationTO(OntologyHelper.createConceptTO(resource));
  }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.