comparison gwt-client/src/main/java/org/dive4elements/river/client/client/event/StepBackEvent.java @ 5838:5aa05a7a34b7

Rename modules to more fitting names.
author Sascha L. Teichmann <teichmann@intevation.de>
date Thu, 25 Apr 2013 15:23:37 +0200
parents flys-client/src/main/java/org/dive4elements/river/client/client/event/StepBackEvent.java@821a02bbfb4e
children 172338b1407f
comparison
equal deleted inserted replaced
5837:d9901a08d0a6 5838:5aa05a7a34b7
1 package org.dive4elements.river.client.client.event;
2
3 import java.io.Serializable;
4
5
6 /**
7 * @author <a href="mailto:ingo.weinzierl@intevation.de">Ingo Weinzierl</a>
8 */
9 public class StepBackEvent implements Serializable {
10
11 private static final long serialVersionUID = 7895180143662002198L;
12
13 /** The identifier of the target state.*/
14 protected String target;
15
16
17 /**
18 * Creates a new StepBackEvent with the identifier of the target state.
19 *
20 * @param target The identifier of the target state.
21 */
22 public StepBackEvent(String target) {
23 this.target = target;
24 }
25
26
27 /**
28 * A method to retrieve the target identifier.
29 *
30 * @return the target identifier.
31 */
32 public String getTarget() {
33 return target;
34 }
35 }
36 // vim:set ts=4 sw=4 si et sta sts=4 fenc=utf8 :

http://dive4elements.wald.intevation.org