Examples of MeasurementsDescriptorParser


Examples of eu.planets_project.pp.plato.evaluation.MeasurementsDescriptorParser

     * to {@link #properties}, {@link #measurementScales}
     * @param descriptor reads the descriptor.
     */
    public void addMeasurementInfos(Reader descriptor) {
                                                 
       MeasurementsDescriptorParser parser = new MeasurementsDescriptorParser();
      
       Map<String, MeasurableProperty> digestedProperties = new HashMap<String, MeasurableProperty>();
       Map<String, Metric> digestedMetrics = new HashMap<String, Metric>();
       
       parser.load(descriptor, digestedProperties, digestedMetrics);
      
       // merge digested properties with already existing
       for (MeasurableProperty p : digestedProperties.values()) {
           MeasurementInfo helperInfo = new MeasurementInfo();
           helperInfo.setMetric(null);
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.