Mercurial > dive4elements > gnv-client
comparison gnv-artifacts/src/main/java/de/intevation/gnv/profile/vertical/VerticalProfileMeshArtifact.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 org.apache.log4j.Logger; | |
4 | |
5 /** | |
6 * @author <a href="mailto:tim.englich@intevation.de">Tim Englich</a> | |
7 * | |
8 */ | |
9 public class VerticalProfileMeshArtifact extends VerticalProfileArtifact { | |
10 /** | |
11 * the logger, used to log exceptions and additonaly information | |
12 */ | |
13 private static Logger log = Logger | |
14 .getLogger(VerticalProfileMeshArtifact.class); | |
15 | |
16 /** | |
17 * The UID of this class | |
18 */ | |
19 private static final long serialVersionUID = -8291547966693867205L; | |
20 | |
21 /** | |
22 * Constructor | |
23 */ | |
24 public VerticalProfileMeshArtifact() { | |
25 super(); | |
26 log.debug("VerticalProfileMeshArtifact.Constructor"); | |
27 super.name = super.name + "Mesh"; | |
28 } | |
29 } | |
30 // vim:set ts=4 sw=4 si et sta sts=4 fenc=utf-8 : |