Examples of StatTOListType


Examples of org.ontospread.tester.xmlbind.StatTOListType

    value.setFunction(manager.getFunctionType()!=null?manager.getFunctionType():FunctionType.H_1);
    testInfoReport.setOntoSpreadConfig(value);
   
    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
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.