comparison flys-artifacts/src/main/java/de/intevation/flys/exports/XYChartGenerator.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 119b8ba2b77f
children 6bfcbe391393
comparison
equal deleted inserted replaced
3632:347096b8cdf6 3633:ebfce31c7eec
278 if (logo == null) { 278 if (logo == null) {
279 logger.debug("No logo to show chosen"); 279 logger.debug("No logo to show chosen");
280 return; 280 return;
281 } 281 }
282 282
283 ImageIcon imageIcon = null; 283 ImageIcon imageIcon = null;
284 if (logo.equals("none")) { 284 if (logo.equals("none")) {
285 return; 285 return;
286 } 286 }
287 /* 287 /*
288 If you want to add images, remember to change code in these places: 288 If you want to add images, remember to change code in these places:
375 anchor = org.jfree.ui.RectangleAnchor.CENTER; 375 anchor = org.jfree.ui.RectangleAnchor.CENTER;
376 } 376 }
377 } 377 }
378 378
379 XYAnnotation xyannotation = 379 XYAnnotation xyannotation =
380 new XYImageAnnotation(xPos, yPos, imageIcon.getImage(), anchor); 380 new XYImageAnnotation(xPos, yPos, imageIcon.getImage(), anchor);
381 plot.getRenderer().addAnnotation(xyannotation, org.jfree.ui.Layer.BACKGROUND); 381 plot.getRenderer().addAnnotation(xyannotation, org.jfree.ui.Layer.BACKGROUND);
382 } 382 }
383 383
384 384
385 protected NumberAxis createXAxis(String label) { 385 protected NumberAxis createXAxis(String label) {
386 return new NumberAxis(label); 386 return new NumberAxis(label);

http://dive4elements.wald.intevation.org