Package eu.planets_project.tb.impl.model

Examples of eu.planets_project.tb.impl.model.PropertyRunEvaluationRecordImpl


          //filter by the propertyID we're looking for
          if(propEvalRecordImpl.getPropertyID().equals(evalPropResBean.getMeasurementPropertyID())){
            //set the line evaluation value
            evalPropResBean.setPropertyEvalValue(propEvalRecordImpl.getPropertyEvalValue());
            for(Calendar runDate : this.getAllRunDates()){
              PropertyRunEvaluationRecordImpl propRunEvalRecImpl = propEvalRecordImpl.getPropertyRunEvalRecord(runDate);
              if(propRunEvalRecImpl!=null){
                //set the per run evaluation value
                evalPropResBean.setEvalResultValue(runDate, comparedStageNames, propRunEvalRecImpl.getRunEvalValue());
              }
            }
          }
        }
      }
View Full Code Here

TOP

Related Classes of eu.planets_project.tb.impl.model.PropertyRunEvaluationRecordImpl

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.