Mercurial > dive4elements > gnv-client
comparison gnv-artifacts/src/main/java/de/intevation/gnv/profile/verticalcrosssection/VerticalCrossSectionMeshArtifact.java @ 1119:7c4f81f74c47
merged gnv-artifacts
author | Thomas Arendsen Hein <thomas@intevation.de> |
---|---|
date | Fri, 28 Sep 2012 12:14:00 +0200 |
parents | c01c220312d0 |
children |
comparison
equal
deleted
inserted
replaced
1027:fca4b5eb8d2f | 1119:7c4f81f74c47 |
---|---|
1 /* | |
2 * Copyright (c) 2010 by Intevation GmbH | |
3 * | |
4 * This program is free software under the LGPL (>=v2.1) | |
5 * Read the file LGPL.txt coming with the software for details | |
6 * or visit http://www.gnu.org/licenses/ if it does not exist. | |
7 */ | |
8 | |
9 package de.intevation.gnv.profile.verticalcrosssection; | |
10 | |
11 import de.intevation.artifacts.ArtifactFactory; | |
12 import de.intevation.artifacts.CallMeta; | |
13 | |
14 import de.intevation.gnv.artifacts.GNVArtifactBase; | |
15 | |
16 import org.apache.log4j.Logger; | |
17 | |
18 import org.w3c.dom.Document; | |
19 | |
20 /** | |
21 * @author <a href="mailto:tim.englich@intevation.de">Tim Englich</a> | |
22 * | |
23 */ | |
24 public class VerticalCrossSectionMeshArtifact extends GNVArtifactBase { | |
25 /** | |
26 * | |
27 */ | |
28 private static final long serialVersionUID = -2687278172203755640L; | |
29 /** | |
30 * the logger, used to log exceptions and additonaly information | |
31 */ | |
32 private static Logger log = Logger | |
33 .getLogger(VerticalCrossSectionMeshArtifact.class); | |
34 | |
35 | |
36 /** | |
37 * Constructor | |
38 */ | |
39 public VerticalCrossSectionMeshArtifact() { | |
40 super(); | |
41 log.debug("VerticalCrossSectionMeshArtifact.Constructor"); | |
42 this.name = "verticalCrossSectionMesh"; | |
43 } | |
44 | |
45 | |
46 /** | |
47 * @see de.intevation.gnv.artifacts.GNVArtifactBase#setup(java.lang.String, | |
48 * de.intevation.artifacts.ArtifactFactory, java.lang.Object, | |
49 * org.w3c.dom.Document) | |
50 */ | |
51 @Override | |
52 public void setup( | |
53 String identifier, | |
54 ArtifactFactory factory, | |
55 Object context, | |
56 CallMeta meta, | |
57 Document data | |
58 ) { | |
59 log.debug("VerticalCrossSectionMeshArtifact.setup"); | |
60 super.setup(identifier, factory, context, meta, data); | |
61 } | |
62 } | |
63 // vim:set ts=4 sw=4 si et sta sts=4 fenc=utf-8 : |