Examples of ScoredConceptTOType


Examples of org.ontospread.xmlbind.ScoredConceptTOType

    ObjectFactory factory = new ObjectFactory();
    OntoSpreadXMLState ontoSpreadXMLState = factory.createOntoSpreadXMLState();
    ontoSpreadXMLState.setScoredConcepts(factory.createScoredConceptTOListType());
    List<ScoredConceptTOType> scoredConceptTOs = ontoSpreadXMLState.getScoredConcepts().getScoredConceptTOs();   
    for (ScoredConceptTO scoredConceptTO : ontoSpreadState.getInitialConcepts()) {
      ScoredConceptTOType scoredXML = new ScoredConceptTOType();
      scoredXML.setConceptUri(scoredConceptTO.getConceptUri());
      scoredXML.setScore(scoredConceptTO.getScore());
      scoredConceptTOs.add(scoredXML);
    }
    ontoSpreadXMLState.setSpreadTime(ontoSpreadState.getSpreadTime());
   
    ontoSpreadXMLState.setSpreadedConcepts(factory.createSpreadConceptListType());
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.