comparison flys-client/src/main/java/de/intevation/flys/client/shared/model/StaticSQRelationArtifact.java @ 5503:b660090b417d

Create a new sq relation project on measurement station record click. * Added new methods to artifact service. * Added new client-side artifact. * Updated UI to have a new row in 'Messstellen-Info'.
author Raimund Renkert <rrenkert@intevation.de>
date Thu, 28 Mar 2013 15:21:15 +0100
parents
children
comparison
equal deleted inserted replaced
5502:566eea137330 5503:b660090b417d
1 package de.intevation.flys.client.shared.model;
2
3 import java.util.List;
4
5
6 public class StaticSQRelationArtifact
7 extends DefaultArtifact
8 {
9
10 /** The name of this artifact */
11 public static final String NAME = "static_sqrelation";
12
13
14
15 public StaticSQRelationArtifact() {
16 }
17
18 public StaticSQRelationArtifact(String uuid, String hash) {
19 super(uuid, hash);
20 }
21
22
23 public StaticSQRelationArtifact(
24 String uuid,
25 String hash,
26 boolean inBackground,
27 List<CalculationMessage> messages
28 ) {
29 super(uuid, hash, inBackground, messages);
30 }
31
32
33 public String getName() {
34 return NAME;
35 }
36 }

http://dive4elements.wald.intevation.org