diff flys-artifacts/src/main/java/de/intevation/flys/artifacts/model/minfo/FlowVelocityMeasurementFacet.java @ 4452:bdf321802d3d

Add FlowVelocityMeasurementArtifact and -facet. Yet dummies.
author Felix Wolfsteller <felix.wolfsteller@intevation.de>
date Thu, 08 Nov 2012 16:50:46 +0100
parents
children b66285ece774
line wrap: on
line diff
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/flys-artifacts/src/main/java/de/intevation/flys/artifacts/model/minfo/FlowVelocityMeasurementFacet.java	Thu Nov 08 16:50:46 2012 +0100
@@ -0,0 +1,55 @@
+package de.intevation.flys.artifacts.model.minfo;
+
+import de.intevation.artifacts.Artifact;
+import de.intevation.artifacts.CallContext;
+import de.intevation.flys.artifacts.FlowVelocityMeasurementArtifact;
+import de.intevation.flys.artifacts.model.BlackboardDataFacet;
+import de.intevation.flys.artifacts.model.FacetTypes;
+
+
+/** Facet to show measured flow velocity. */
+public class FlowVelocityMeasurementFacet
+extends      BlackboardDataFacet
+implements   FacetTypes {
+
+    public FlowVelocityMeasurementFacet(String description) {
+        this(FLOW_VELOCITY_MEASUREMENT, description);
+    }
+
+
+    public FlowVelocityMeasurementFacet(String name, String description) {
+        this.name = name;
+        this.description = description;
+        this.index = 0;
+    }
+
+
+    /**
+     * Returns the data this facet requires.
+     *
+     * @param artifact the owner artifact.
+     * @param context  the CallContext (ignored).
+     *
+     * @return the data.
+     */
+    @Override
+    public Object getData(Artifact artifact, CallContext context) {
+        FlowVelocityMeasurementArtifact staticData =
+            (FlowVelocityMeasurementArtifact) artifact;
+        //TODO: impl like return staticData.getVelocity();
+        return null;
+    }
+
+
+    /**
+     * Create a deep copy of this Facet.
+     * @return a deep copy.
+     */
+    @Override
+    public FlowVelocityMeasurementFacet deepCopy() {
+        FlowVelocityMeasurementFacet copy = new FlowVelocityMeasurementFacet(description);
+        copy.set(this);
+        return copy;
+    }
+}
+// vim:set ts=4 sw=4 si et sta sts=4 fenc=utf8 :

http://dive4elements.wald.intevation.org