Examples of PathTOType


Examples of org.ontospread.xmlbind.PathTOType

    for (String key : spreadPathTable.keySet()) {
      PathTO[] pathTOs = spreadPathTable.get(key);
      EntryPathTableType entry = new EntryPathTableType();
      entry.setUri(key);
      for (PathTO pathTO : pathTOs) {
        PathTOType pathToAdd = new PathTOType();
        pathToAdd.setUri(pathTO.getConceptUri());
        pathToAdd.setRelations(factory.createListUrisType());
        if(pathTO.getRelationsUri()!=null){
          pathToAdd.getRelations().getRelations().addAll(Arrays.asList(pathTO.getRelationsUri()));
        }
        entry.setPathTOs(factory.createPathTOTypeList());
        entry.getPathTOs().getPathTOs().add(pathToAdd );       
      }
      ontoSpreadXMLState.getSpreadPathTable().getSpreadTableTOs().add(entry );
    }
   
    ontoSpreadXMLState.setFinalSpreadedConcepts(factory.createSpreadedConceptTOListType());
    for (SpreadedConceptTO spreadedConcept : ontoSpreadState.getFinalSpreadedConcepts()) {
      SpreadedConceptTOType spreadedXML = new SpreadedConceptTOType();
      spreadedXML.setConceptUri(spreadedConcept.getConcept().getUri());
      PathTO[] pathTOs = spreadedConcept.getSpreadPath();
      for (PathTO pathTO : pathTOs) {
        PathTOType pathToAdd = new PathTOType();
        pathToAdd.setUri(pathTO.getConceptUri());
        pathToAdd.setRelations(factory.createListUrisType());
        if(pathTO.getRelationsUri() != null){
          pathToAdd.getRelations().getRelations().addAll(Arrays.asList(pathTO.getRelationsUri()));
        }
        spreadedXML.setPathTOs(factory.createPathTOTypeList());
        spreadedXML.getPathTOs().getPathTOs().add(pathToAdd);
      }
      spreadedXML.setScore(spreadedConcept.getScore());
      ontoSpreadXMLState.getFinalSpreadedConcepts().getSpreadedConceptTOs().add(spreadedXML);
    }
   
    ontoSpreadXMLState.setUriDepthPair(factory.createUriDepthListType());
    List<UriDepthPairType> uriDepthPairs = ontoSpreadXMLState.getUriDepthPair().getUriDepthPairs();
    for (UriDepthPair uriPair : ontoSpreadState.getSortedList()) {
      UriDepthPairType uriXMLPair = new UriDepthPairType();
      uriXMLPair.setConceptUri(uriPair.getUri());
      uriXMLPair.setDepth(uriPair.getDepth());     
      uriDepthPairs.add(uriXMLPair );
    }
    ontoSpreadXMLState.setConcepts(factory.createEntryConceptsListType());
    List<EntryConceptsType> entryConceptTOs = ontoSpreadXMLState.getConcepts().getEntryConceptTOs();
    for (String key : ontoSpreadState.getConcepts().keySet()) {     
      Double value = ontoSpreadState.getConcepts().get(key);
      EntryConceptsType entryXML = new EntryConceptsType();
      entryXML.setUri(key);
      entryXML.setValue(value);
      entryConceptTOs.add(entryXML );     
    }
    HashMap<PathTO,Integer> prizeTable = ontoSpreadState.getConceptsToPrize().getPrizeTable();
    ontoSpreadXMLState.setPrizeTable(factory.createEntryPrizeTableListType());
    for (PathTO pathTO : prizeTable.keySet()) {
      EntryPrizeTableTOType entry = new EntryPrizeTableTOType();
      PathTOType pathToAdd = new PathTOType();
      pathToAdd.setUri(pathTO.getConceptUri());
      pathToAdd.setRelations(factory.createListUrisType());
      if(pathTO.getRelationsUri() != null){
        pathToAdd.getRelations().getRelations().addAll(Arrays.asList((pathTO.getRelationsUri())));
      }
      entry.setHits(prizeTable.get(pathTO));
      entry.setPathTO(pathToAdd);
      ontoSpreadXMLState.getPrizeTable().getEntryPrizeTableTOs().add(entry);
    }
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.