Mercurial > dive4elements > gnv-client
view gnv-artifacts/src/main/java/de/intevation/gnv/profile/verticalcrosssection/VerticalCrossSectionMeshArtifact.java @ 210:7d1f9219d163
The Timeperiod of the Modeldata has changed. so it was nessessarry to change
the Unittest to get propper Results
gnv-artifacts/trunk@266 c6561f87-3c4e-4783-a992-168aeb5c3f6f
author | Tim Englich <tim.englich@intevation.de> |
---|---|
date | Fri, 23 Oct 2009 14:29:50 +0000 |
parents | a33d59f5791a |
children | 3e82b4f1c455 |
line wrap: on
line source
/** * */ package de.intevation.gnv.profile.verticalcrosssection; import org.apache.log4j.Logger; import org.w3c.dom.Document; import de.intevation.artifacts.ArtifactFactory; import de.intevation.artifacts.CallContext; import de.intevation.gnv.artifacts.GNVArtifactBase; /** * @author Tim Englich <tim.englich@intevation.de> * */ public class VerticalCrossSectionMeshArtifact extends GNVArtifactBase { /** * */ private static final long serialVersionUID = -2687278172203755640L; /** * the logger, used to log exceptions and additonaly information */ private static Logger log = Logger .getLogger(VerticalCrossSectionMeshArtifact.class); /** * Constructor */ public VerticalCrossSectionMeshArtifact() { super(); log.debug("VerticalCrossSectionMeshArtifact.Constructor"); this.name = "verticalCrossSectionMesh"; } /** * @see de.intevation.artifactdatabase.DefaultArtifact#describe(java.lang.Object) */ @Override public Document describe(CallContext context) { log.debug("VerticalCrossSectionMeshArtifact.describe"); return super.createDescibeOutput(context.getMeta(),super.identifier); } /** * @see de.intevation.gnv.artifacts.GNVArtifactBase#setup(java.lang.String, * de.intevation.artifacts.ArtifactFactory, java.lang.Object) */ @Override public void setup(String identifier, ArtifactFactory factory, Object context) { log.debug("VerticalCrossSectionMeshArtifact.setup"); super.setup(identifier, factory, context); } }