[Dive4elements-commits] [PATCH 2 of 5] Add JR datasource for Bedheight differences
Wald Commits
scm-commit at wald.intevation.org
Mon Jun 10 13:06:41 CEST 2013
# HG changeset patch
# User Andre Heinecke <aheinecke at intevation.de>
# Date 1370862257 -7200
# Node ID 3e59b64a17c8771b4a9655f3be176a88ee26dcb2
# Parent f0f62743c83ab2609c6a027455a25b33a479b210
Add JR datasource for Bedheight differences
diff -r f0f62743c83a -r 3e59b64a17c8 artifacts/src/main/java/org/dive4elements/river/artifacts/model/minfo/BedDifferenceJRDataSource.java
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/artifacts/src/main/java/org/dive4elements/river/artifacts/model/minfo/BedDifferenceJRDataSource.java Mon Jun 10 13:04:17 2013 +0200
@@ -0,0 +1,79 @@
+/* Copyright (C) 2011, 2012, 2013 by Bundesanstalt für Gewässerkunde
+ * Software engineering by Intevation GmbH
+ *
+ * This file is Free Software under the GNU AGPL (>=v3)
+ * and comes with ABSOLUTELY NO WARRANTY! Check out the
+ * documentation coming with Dive4Elements River for details.
+ */
+
+package org.dive4elements.river.artifacts.model.minfo;
+
+import java.util.ArrayList;
+import java.util.HashMap;
+
+import org.apache.log4j.Logger;
+
+import net.sf.jasperreports.engine.JRDataSource;
+import net.sf.jasperreports.engine.JRException;
+import net.sf.jasperreports.engine.JRField;
+
+
+/**
+ * @author <a href="mailto:aheinecke at intevation.de">Andre Heinecke</a>
+ */
+public class BedDifferenceJRDataSource implements JRDataSource
+{
+ /** The logger used in this exporter.*/
+ private static Logger logger = Logger.getLogger(BedDifferenceJRDataSource.class);
+
+ private ArrayList<String[]> data;
+ private HashMap<String, String> metaData;
+
+ private int index = -1;
+
+ public BedDifferenceJRDataSource() {
+ data = new ArrayList<String[]>();
+ metaData = new HashMap<String, String>();
+ }
+
+ public void addData(String[] val) {
+ data.add(val);
+ }
+
+ public void addMetaData(String key, String value) {
+ metaData.put(key, value);
+ }
+
+ public boolean next() throws JRException {
+ index++;
+ return (index < data.size());
+ }
+
+ public Object getFieldValue(JRField field) throws JRException {
+ Object value = "";
+ String fieldName = field.getName();
+ if ("river".equals(fieldName)) {
+ value = metaData.get("river");
+ }
+ else if ("calculation".equals(fieldName)) {
+ value = metaData.get("calculation");
+ }
+ else if ("ye_mode".equals(fieldName)) {
+ value = metaData.get("ye_mode");
+ }
+ else if ("date".equals(fieldName)) {
+ value = metaData.get("date");
+ }
+ else if ("differences".equals(fieldName)) {
+ value = metaData.get("differences");
+ }
+ else if ("km".equals(fieldName)) {
+ value = data.get(index)[0];
+ }
+ else if ("meter".equals(fieldName)) {
+ value = data.get(index)[1];
+ }
+ return value;
+ }
+}
+// vim:set ts=4 sw=4 si et sta sts=4 fenc=utf8 :
More information about the Dive4elements-commits
mailing list