Mercurial > dive4elements > gnv-client
comparison gnv-artifacts/src/main/java/de/intevation/gnv/profile/vertical/VerticalProfileArtifact.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.vertical; | |
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 VerticalProfileArtifact extends GNVArtifactBase { | |
17 /** | |
18 * the logger, used to log exceptions and additonaly information | |
19 */ | |
20 private static Logger log = Logger.getLogger(VerticalProfileArtifact.class); | |
21 | |
22 /** | |
23 * The UID of this class | |
24 */ | |
25 private static final long serialVersionUID = -8291547966693867205L; | |
26 | |
27 /** | |
28 * Constructor | |
29 */ | |
30 public VerticalProfileArtifact() { | |
31 super(); | |
32 log.debug("VerticalProfileArtifact.Constructor"); | |
33 this.name = "verticalProfile"; | |
34 } | |
35 | |
36 | |
37 /** | |
38 * @see de.intevation.gnv.artifacts.GNVArtifactBase#setup(java.lang.String, | |
39 * de.intevation.artifacts.ArtifactFactory, java.lang.Object, | |
40 * org.w3c.dom.Document) | |
41 */ | |
42 @Override | |
43 public void setup(String identifier, ArtifactFactory factory, | |
44 Object context, Document data) { | |
45 log.debug("VerticalProfileArtifact.setup"); | |
46 super.setup(identifier, factory, context, data); | |
47 } | |
48 } |