comparison flys-client/src/main/java/de/intevation/flys/client/shared/model/MINFOArtifact.java @ 2520:fe67f1345687

Added a MINFOArtifact and improved the DistancePanel. flys-client/trunk@4399 c6561f87-3c4e-4783-a992-168aeb5c3f6f
author Ingo Weinzierl <ingo.weinzierl@intevation.de>
date Mon, 14 May 2012 10:29:05 +0000
parents
children
comparison
equal deleted inserted replaced
2519:427df4e81af0 2520:fe67f1345687
1 package de.intevation.flys.client.shared.model;
2
3 import java.util.List;
4
5
6 /**
7 * The WINFO implementation of an Artifact.
8 *
9 * @author <a href="mailto:ingo.weinzierl@intevation.de">Ingo Weinzierl</a>
10 */
11 public class MINFOArtifact extends DefaultArtifact {
12
13 /** The name of this artifact: 'minfo'.*/
14 public static final String NAME = "minfo";
15
16
17 public MINFOArtifact() {
18 }
19
20
21 public MINFOArtifact(String uuid, String hash) {
22 super(uuid, hash);
23 }
24
25
26 public MINFOArtifact(
27 String uuid,
28 String hash,
29 boolean inBackground,
30 List<CalculationMessage> messages
31 ) {
32 super(uuid, hash, inBackground, messages);
33 }
34
35
36 public String getName() {
37 return NAME;
38 }
39 }
40 // vim:set ts=4 sw=4 si et sta sts=4 fenc=utf8 :

http://dive4elements.wald.intevation.org