comparison gwt-client/src/main/java/org/dive4elements/river/client/shared/model/BUNDUArtifact.java @ 9072:02739b8c010d

bundu progress (Klon FixationAnalysis +Vollmer funktioniert; Verzweigung neue Berechnungsart Bezugswst)
author gernotbelger
date Wed, 16 May 2018 17:43:47 +0200
parents a561b882436d
children cd650cacc926
comparison
equal deleted inserted replaced
9071:a561b882436d 9072:02739b8c010d
13 /** 13 /**
14 * The BUNDU implementation of an Artifact. 14 * The BUNDU implementation of an Artifact.
15 * 15 *
16 * @author Gernot Belger 16 * @author Gernot Belger
17 */ 17 */
18 public class BUNDUArtifact extends DefaultArtifact { 18 public class BUNDUArtifact extends AbstractFixBunduArtifact {
19 19
20 /** The name of this artifact: 'bundu'. */ 20 /** The name of this artifact: 'bundu'. */
21 private static final String NAME = "bundu"; 21 private static final String NAME = "bundu";
22 22
23 /** Necessary for serialization */
24 public BUNDUArtifact() { 23 public BUNDUArtifact() {
24 super();
25 } 25 }
26 26
27 public BUNDUArtifact(final String uuid, final String hash, final boolean inBackground, final List<CalculationMessage> messages) { 27 public BUNDUArtifact(final String uuid, final String hash) {
28 super(uuid, hash, inBackground, messages); 28 super(uuid, hash);
29 }
30
31 public BUNDUArtifact(final String uuid, final String hash, final boolean background, final List<CalculationMessage> msg) {
32 super(uuid, hash, background, msg);
29 } 33 }
30 34
31 @Override 35 @Override
32 public String getName() { 36 public String getName() {
33 return NAME; 37 return NAME;
34 } 38 }
39
40 @Override
41 protected String getEventstateId() {
42
43 return "state.bundu.eventselect"; // mit bundu.xml im server synchron halten :-(
44 }
35 } 45 }
36 // vim:set ts=4 sw=4 si et sta sts=4 fenc=utf8 : 46 // vim:set ts=4 sw=4 si et sta sts=4 fenc=utf8 :

http://dive4elements.wald.intevation.org