comparison flys-artifacts/src/main/java/de/intevation/flys/exports/TimeseriesChartGenerator.java @ 3633:ebfce31c7eec

Removed trailing whitespace. flys-artifacts/trunk@5340 c6561f87-3c4e-4783-a992-168aeb5c3f6f
author Sascha L. Teichmann <sascha.teichmann@intevation.de>
date Sat, 01 Sep 2012 08:44:39 +0000
parents 347096b8cdf6
children d5a0602375fb
comparison
equal deleted inserted replaced
3632:347096b8cdf6 3633:ebfce31c7eec
261 if (logo == null) { 261 if (logo == null) {
262 logger.debug("No logo to show chosen"); 262 logger.debug("No logo to show chosen");
263 return; 263 return;
264 } 264 }
265 265
266 ImageIcon imageIcon = null; 266 ImageIcon imageIcon = null;
267 if (logo.equals("none")) { 267 if (logo.equals("none")) {
268 return; 268 return;
269 } 269 }
270 /* 270 /*
271 If you want to add images, remember to change code in these places: 271 If you want to add images, remember to change code in these places:
355 anchor = org.jfree.ui.RectangleAnchor.CENTER; 355 anchor = org.jfree.ui.RectangleAnchor.CENTER;
356 } 356 }
357 } 357 }
358 358
359 XYAnnotation xyannotation = 359 XYAnnotation xyannotation =
360 new XYImageAnnotation(xPos, yPos, imageIcon.getImage(), anchor); 360 new XYImageAnnotation(xPos, yPos, imageIcon.getImage(), anchor);
361 plot.getRenderer().addAnnotation(xyannotation, org.jfree.ui.Layer.BACKGROUND); 361 plot.getRenderer().addAnnotation(xyannotation, org.jfree.ui.Layer.BACKGROUND);
362 } 362 }
363 363
364 364
365 @Override 365 @Override
366 protected Series getSeriesOf(XYDataset dataset, int idx) { 366 protected Series getSeriesOf(XYDataset dataset, int idx) {

http://dive4elements.wald.intevation.org