Mercurial > dive4elements > gnv-client
comparison gnv-artifacts/src/main/java/de/intevation/gnv/profile/verticalcrosssection/VerticalCrossSectionMeshArtifact.java @ 657:af3f56758f59
merged gnv-artifacts/0.5
author | Thomas Arendsen Hein <thomas@intevation.de> |
---|---|
date | Fri, 28 Sep 2012 12:13:53 +0200 |
parents | 5b9b74c08bbb |
children | 9a828e5a2390 |
comparison
equal
deleted
inserted
replaced
590:5f5f273c8566 | 657:af3f56758f59 |
---|---|
1 /** | |
2 * | |
3 */ | |
4 package de.intevation.gnv.profile.verticalcrosssection; | |
5 | |
6 import org.apache.log4j.Logger; | |
7 import org.w3c.dom.Document; | |
8 | |
9 import de.intevation.artifacts.ArtifactFactory; | |
10 import de.intevation.gnv.artifacts.GNVArtifactBase; | |
11 | |
12 /** | |
13 * @author Tim Englich <tim.englich@intevation.de> | |
14 * | |
15 */ | |
16 public class VerticalCrossSectionMeshArtifact extends GNVArtifactBase { | |
17 /** | |
18 * | |
19 */ | |
20 private static final long serialVersionUID = -2687278172203755640L; | |
21 /** | |
22 * the logger, used to log exceptions and additonaly information | |
23 */ | |
24 private static Logger log = Logger | |
25 .getLogger(VerticalCrossSectionMeshArtifact.class); | |
26 | |
27 | |
28 /** | |
29 * Constructor | |
30 */ | |
31 public VerticalCrossSectionMeshArtifact() { | |
32 super(); | |
33 log.debug("VerticalCrossSectionMeshArtifact.Constructor"); | |
34 this.name = "verticalCrossSectionMesh"; | |
35 } | |
36 | |
37 | |
38 /** | |
39 * @see de.intevation.gnv.artifacts.GNVArtifactBase#setup(java.lang.String, | |
40 * de.intevation.artifacts.ArtifactFactory, java.lang.Object, | |
41 * org.w3c.dom.Document) | |
42 */ | |
43 @Override | |
44 public void setup(String identifier, ArtifactFactory factory, | |
45 Object context, Document data) { | |
46 log.debug("VerticalCrossSectionMeshArtifact.setup"); | |
47 super.setup(identifier, factory, context, data); | |
48 } | |
49 } |