diff gnv-artifacts/src/main/java/de/intevation/gnv/state/StateBase.java @ 839:ac5988f27714

Added the time interval into the subtitle of timeseries charts (issue152). gnv-artifacts/trunk@948 c6561f87-3c4e-4783-a992-168aeb5c3f6f
author Ingo Weinzierl <ingo.weinzierl@intevation.de>
date Mon, 19 Apr 2010 14:19:19 +0000
parents 05bf8534a35a
children 797a6264b89b
line wrap: on
line diff
--- a/gnv-artifacts/src/main/java/de/intevation/gnv/state/StateBase.java	Mon Apr 19 12:31:02 2010 +0000
+++ b/gnv-artifacts/src/main/java/de/intevation/gnv/state/StateBase.java	Mon Apr 19 14:19:19 2010 +0000
@@ -1,5 +1,8 @@
 package de.intevation.gnv.state;
 
+import java.text.DateFormat;
+import java.text.SimpleDateFormat;
+
 import java.util.ArrayList;
 import java.util.Arrays;
 import java.util.Collection;
@@ -109,6 +112,24 @@
 
     protected Map<String, InputData> preSettings = null;
 
+
+    /**
+     * The source date format as string.
+     */
+    public static String srcDateFormat = "yyyy.MM.dd hh:mm:ss";
+
+
+    /**
+     * The source date format used to read string represented strings.
+     */
+    public static DateFormat srcFormat;
+
+
+    static {
+        srcFormat = new SimpleDateFormat(srcDateFormat);
+    }
+
+
     /**
      * Constructor
      */

http://dive4elements.wald.intevation.org