Mercurial > dive4elements > gnv-client
comparison gnv-artifacts/src/main/java/de/intevation/gnv/profile/vertical/VerticalProfileArtifact.java @ 875:5e9efdda6894
merged gnv-artifacts/1.0
author | Thomas Arendsen Hein <thomas@intevation.de> |
---|---|
date | Fri, 28 Sep 2012 12:13:56 +0200 |
parents | 05bf8534a35a |
children | f953c9a559d8 |
comparison
equal
deleted
inserted
replaced
722:bb3ffe7d719e | 875:5e9efdda6894 |
---|---|
1 package de.intevation.gnv.profile.vertical; | |
2 | |
3 import de.intevation.artifacts.ArtifactFactory; | |
4 | |
5 import de.intevation.gnv.artifacts.GNVArtifactBase; | |
6 | |
7 import org.apache.log4j.Logger; | |
8 | |
9 import org.w3c.dom.Document; | |
10 | |
11 /** | |
12 * @author <a href="mailto:tim.englich@intevation.de">Tim Englich</a> | |
13 * | |
14 */ | |
15 public class VerticalProfileArtifact extends GNVArtifactBase { | |
16 /** | |
17 * the logger, used to log exceptions and additonaly information | |
18 */ | |
19 private static Logger log = Logger.getLogger(VerticalProfileArtifact.class); | |
20 | |
21 /** | |
22 * The UID of this class | |
23 */ | |
24 private static final long serialVersionUID = -8291547966693867205L; | |
25 | |
26 /** | |
27 * Constructor | |
28 */ | |
29 public VerticalProfileArtifact() { | |
30 super(); | |
31 log.debug("VerticalProfileArtifact.Constructor"); | |
32 this.name = "verticalProfile"; | |
33 } | |
34 | |
35 | |
36 /** | |
37 * @see de.intevation.gnv.artifacts.GNVArtifactBase#setup(java.lang.String, | |
38 * de.intevation.artifacts.ArtifactFactory, java.lang.Object, | |
39 * org.w3c.dom.Document) | |
40 */ | |
41 @Override | |
42 public void setup(String identifier, ArtifactFactory factory, | |
43 Object context, Document data) { | |
44 log.debug("VerticalProfileArtifact.setup"); | |
45 super.setup(identifier, factory, context, data); | |
46 } | |
47 } | |
48 // vim:set ts=4 sw=4 si et sta sts=4 fenc=utf-8 : |