diff artifacts/src/main/java/org/dive4elements/river/jfree/StyledValueMarker.java @ 6905:1b35b2ddfc28

Artifacts: Introduce ThemeDocument & make stuff compileable again. THIS BREAKS THE SYSTEM! TODO: Move ThemeUtils into ThemeDocument.
author Sascha L. Teichmann <teichmann@intevation.de>
date Thu, 22 Aug 2013 23:31:38 +0200
parents af13ceeba52a
children
line wrap: on
line diff
--- a/artifacts/src/main/java/org/dive4elements/river/jfree/StyledValueMarker.java	Thu Aug 22 15:38:57 2013 +0200
+++ b/artifacts/src/main/java/org/dive4elements/river/jfree/StyledValueMarker.java	Thu Aug 22 23:31:38 2013 +0200
@@ -8,13 +8,12 @@
 
 package org.dive4elements.river.jfree;
 
-import org.dive4elements.river.utils.ThemeUtil;
+import org.dive4elements.river.themes.ThemeDocument;
 
 import java.awt.BasicStroke;
 import java.awt.Color;
 
 import org.jfree.chart.plot.ValueMarker;
-import org.w3c.dom.Document;
 
 /**
  * Marker that represents a single value.
@@ -24,16 +23,16 @@
 
     private static final long serialVersionUID = -3607777705307785140L;
 
-    public StyledValueMarker(double value, Document theme) {
+    public StyledValueMarker(double value, ThemeDocument theme) {
         super(value);
 
-        Color color = ThemeUtil.parseAreaBackgroundColor(theme);
+        Color color = theme.parseAreaBackgroundColor();
         if(color == null) {
             color = Color.BLACK;
         }
         this.setPaint(color);
 
-        int size = ThemeUtil.parsePointWidth(theme);
+        int size = theme.parsePointWidth();
         setStroke(new BasicStroke(size));
     }
 }

http://dive4elements.wald.intevation.org