comparison flys-client/src/main/java/org/dive4elements/river/client/client/event/ParameterChangeEvent.java @ 5834:f507086aa94b

Repaired internal references.
author Sascha L. Teichmann <teichmann@intevation.de>
date Thu, 25 Apr 2013 12:31:32 +0200
parents flys-client/src/main/java/de/intevation/flys/client/client/event/ParameterChangeEvent.java@3fa8583434b2
children 821a02bbfb4e
comparison
equal deleted inserted replaced
5833:a2bdc0f524e8 5834:f507086aa94b
1 package de.intevation.flys.client.client.event;
2
3 import de.intevation.flys.client.shared.model.Artifact;
4
5
6 /**
7 * This events stores references to the old artifact and the new one.
8 *
9 * @author <a href="mailto:ingo.weinzierl@intevation.de">Ingo Weinzierl</a>
10 */
11 public class ParameterChangeEvent {
12
13 public static enum Type {
14 FORWARD, BACK
15 }
16
17
18 protected Artifact oldArtifact;
19 protected Artifact newArtifact;
20
21 protected Type type;
22
23
24 public ParameterChangeEvent(Artifact old, Artifact newArt) {
25 this(old, newArt, Type.FORWARD);
26 }
27
28
29 public ParameterChangeEvent(Artifact oArt, Artifact nArt, Type type) {
30 oldArtifact = oArt;
31 newArtifact = nArt;
32 this.type = type;
33 }
34
35
36 public Artifact getOldValue() {
37 return oldArtifact;
38 }
39
40 public Artifact getNewValue() {
41 return newArtifact;
42 }
43
44 public Type getType() {
45 return type;
46 }
47 }
48 // vim:set ts=4 sw=4 si et sta sts=4 fenc=utf8 :

http://dive4elements.wald.intevation.org