comparison flys-artifacts/src/main/java/de/intevation/flys/artifacts/FixationArtifact.java @ 3786:4adc35aa655c

merged flys-artifacts/2.9.1
author Thomas Arendsen Hein <thomas@intevation.de>
date Fri, 28 Sep 2012 12:14:47 +0200
parents a66df8e8d3df
children 1ff257ab38ca
comparison
equal deleted inserted replaced
3719:e82acd5c86f7 3786:4adc35aa655c
1 package de.intevation.flys.artifacts;
2
3 import org.apache.log4j.Logger;
4
5 /**
6 * The default fixation analysis artifact.
7 *
8 * @author <a href="mailto:raimund.renkert@intevation.de">Raimund Renkert</a>
9 */
10 public class FixationArtifact
11 extends FLYSArtifact
12 {
13 /** The logger for this class. */
14 private static Logger logger = Logger.getLogger(FixationArtifact.class);
15
16 /** The name of the artifact. */
17 public static final String ARTIFACT_NAME = "fixanalysis";
18
19 /**
20 * The default constructor.
21 */
22 public FixationArtifact() {
23 }
24
25 /**
26 * Returns the name of the concrete artifact.
27 *
28 * @return the name of the concrete artifact.
29 */
30 @Override
31 public String getName() {
32 return ARTIFACT_NAME;
33 }
34 }
35 // vim:set ts=4 sw=4 si et sta sts=4 fenc=utf8 :

http://dive4elements.wald.intevation.org