1 11 package org.eclipse.test.internal.performance.db; 12 13 import org.eclipse.test.internal.performance.data.Dim; 14 15 16 public class SummaryEntry { 17 public String scenarioName; 18 public String shortName; 19 public Dim dimension; 20 public boolean isGlobal; 21 public int commentKind; 22 public String comment; 23 24 SummaryEntry(String scenarioName, String shortName, Dim dimension, boolean isGlobal) { 25 this.scenarioName= scenarioName; 26 this.shortName= shortName; 27 this.dimension= dimension; 28 this.isGlobal= isGlobal; 29 } 30 31 SummaryEntry(String scenarioName, String shortName, Dim dimension, boolean isGlobal, int commentKind, String comment) { 32 this.scenarioName= scenarioName; 33 this.shortName= shortName; 34 this.dimension= dimension; 35 this.isGlobal= isGlobal; 36 this.commentKind= commentKind; 37 this.comment= comment; 38 } 39 40 public String toString() { 41 return "SummaryEntry("+isGlobal+"): <" + scenarioName + "> <" + shortName + "> <" + dimension + '>'; } 43 } 44 | Popular Tags |