Package org.ontospread.tester.xmlbind

Examples of org.ontospread.tester.xmlbind.StatTOType


    report.setOntoSpreadStateXML(OntoSpreadStateXMLSerializer.asXML(stateDAOPair.getOntoSpreadState()));
   
    StatTOListType stats = new StatTOListType();
    StatTO[] ontoStats = stateDAOPair.getOntoDAO().getStats();
    for (StatTO statTO : ontoStats) {
      StatTOType statTOType = new StatTOType();
      statTOType.setType(statTO.getType());
      statTOType.setValue(statTO.getValue());
      stats.getStatTOs().add(statTOType);
    }
    report.setOntologyStats(stats);
   
    report.getTestReports().add(testInfoReport);
View Full Code Here

TOP

Related Classes of org.ontospread.tester.xmlbind.StatTOType

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.