Examples of BenchmarkGoalsHandler


Examples of eu.planets_project.tb.api.model.benchmark.BenchmarkGoalsHandler

   * @param BMGoalName
   * @param BMGoalID
   * @param PropertyName
   */
  public void setBMGoalPropertyNameMapping(String BMGoalName, String BMGoalID, String PropertyName){
    BenchmarkGoalsHandler handler = BenchmarkGoalsHandlerImpl.getInstance();
    List<String> ids = handler.getAllBenchmarkGoalIDs();
    if(ids.contains(BMGoalID)){
      BenchmarkGoal goal = handler.getBenchmarkGoal(BMGoalID);
      if(goal.getName().equals(BMGoalName)){
        //now store the mapping
        this.mappingGoalIDToPropertyID.put(goal.getID(), PropertyName);
      }
      else{
View Full Code Here

Examples of eu.planets_project.tb.api.model.benchmark.BenchmarkGoalsHandler

  public String getBMGoalID(){
    return this.sBMGoalID;
  }

  public String getBMGoalName(){
    BenchmarkGoalsHandler bmGoalHandler = BenchmarkGoalsHandlerImpl.getInstance();
    return bmGoalHandler.getBenchmarkGoal(this.getBMGoalID()).getName();
  }
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.