Home | History | Annotate | Download | only in ui

Lines Matching refs:tooltip

115 		 * Typically made of a rectangle and an associated text used as tooltip.
121 AreaZone(Rectangle zone, String tooltip) {
124 this.title = tooltip;
164 void addArea(Rectangle rec, String tooltip) {
165 AreaZone zone = new AreaZone(rec, tooltip);
266 StringBuffer tooltip = new StringBuffer("Time for baseline build ");
267 tooltip.append(baselineBuildResults.getName());
268 tooltip.append(": ");
269 tooltip.append(Util.timeString((long)baselineValue));
270 tooltip.append(" [±");
271 tooltip.append(Util.timeString((long)baselineError));
272 tooltip.append(']');
273 graphArea.addArea(rec, tooltip.toString());
296 String tooltip = "Time for current build "+currentBuildResults.getName()+": "+Util.timeString((long)currentValue);
298 tooltip += ". " + currentBuildResults.getComment();
300 graphArea.addArea(rec, tooltip);
313 StringBuffer tooltip = new StringBuffer("Time for current build ");
314 tooltip.append(currentBuildResults.getName());
315 tooltip.append(": ");
316 tooltip.append(Util.timeString((long)currentValue));
317 tooltip.append(" [±");
318 tooltip.append(Util.timeString((long)currentError));
319 tooltip.append(']');
321 tooltip.append(". ");
322 tooltip.append(currentBuildResults.getComment());
324 graphArea.addArea(rec, tooltip.toString());
375 // No tooltip => delta zone is between end of bar and the scenario title beginning
394 graphArea.addArea(titleZone, null/*no tooltip*/);