/** * Find or add a new measurement group. * * @param label Group name * @return Measurement group. */ public EvaluationResult.MeasurementGroup findOrCreateGroup(String label) { for(EvaluationResult.MeasurementGroup g : groups) { if(label.equals(g.getName())) { return g; } } return newGroup(label); }
/** * Find or add a new measurement group. * * @param label Group name * @return Measurement group. */ public EvaluationResult.MeasurementGroup findOrCreateGroup(String label) { for(EvaluationResult.MeasurementGroup g : groups) { if(label.equals(g.getName())) { return g; } } return newGroup(label); }
/** * Find or add a new measurement group. * * @param label Group name * @return Measurement group. */ public EvaluationResult.MeasurementGroup findOrCreateGroup(String label) { for(EvaluationResult.MeasurementGroup g : groups) { if(label.equals(g.getName())) { return g; } } return newGroup(label); }
ypos = addHeader(plot, parent, ypos, g.getName()); for(EvaluationResult.Measurement m : g) { ypos = addBarChart(plot, parent, ypos, m.getName(), m.getVal(), m.getMin(), m.getMax(), m.getExp(), m.lowerIsBetter());
ypos = addHeader(plot, parent, ypos, g.getName()); for(EvaluationResult.Measurement m : g) { ypos = addBarChart(plot, parent, ypos, m.getName(), m.getVal(), m.getMin(), m.getMax(), m.getExp(), m.lowerIsBetter());
@Override public void writeToText(TextWriterStream out, String label) { for(EvaluationResult.MeasurementGroup g : groups) { out.commentPrintLn(g.getName()); out.flush(); for(Measurement m : g) { out.inlinePrintNoQuotes(m.name); out.inlinePrintNoQuotes(m.val); out.flush(); } } }
@Override public void writeToText(TextWriterStream out, String label) { for(EvaluationResult.MeasurementGroup g : groups) { out.commentPrintLn(g.getName()); out.flush(); for(Measurement m : g) { out.inlinePrintNoQuotes(m.name); out.inlinePrintNoQuotes(m.val); out.flush(); } } }
@Override public void writeToText(TextWriterStream out, String label) { for(EvaluationResult.MeasurementGroup g : groups) { out.commentPrintLn(g.getName()); out.flush(); for(Measurement m : g) { out.inlinePrintNoQuotes(m.name); out.inlinePrintNoQuotes(m.val); out.flush(); } } }