Package eu.planets_project.pp.plato.model

Examples of eu.planets_project.pp.plato.model.ToolExperience.addMeasurement()


        for (DetailedExperimentInfo info : detailedInfos.values()) {
            /* put measurements of sample files to toolExp */
            for (Measurement m : info.getMeasurements().values()) {
               /* for calculating the average only numeric measurements are of interest
                  but we need the list of all available properties to write statistics to files */
               toolExp.addMeasurement(m);
            }
        }
        return toolExp;
    }
   
View Full Code Here


     * @param tool identifies the {@link ToolExperience} to which to add the measurement
     * @param m
     */
    public void addExperience(String tool,Measurement m) {
        ToolExperience b = getToolExperience(tool);
        b.addMeasurement(m);
    }   
   
    /**
     * @param tool identifies the {@link ToolExperience}
     * @param m identifies the {@link Measurement} which points to a {@link MeasurableProperty}
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.