comparison gwt-client/src/main/java/org/dive4elements/river/client/client/event/RedrawRequestEvent.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/RedrawRequestEvent.java@821a02bbfb4e
children 172338b1407f
comparison
equal deleted inserted replaced
5837:d9901a08d0a6 5838:5aa05a7a34b7
1 package org.dive4elements.river.client.client.event;
2
3
4 public class RedrawRequestEvent {
5
6 public static enum Type {
7 RESET, DEFAULT
8 }
9
10
11 protected Type type;
12
13
14 public RedrawRequestEvent() {
15 this.type = Type.DEFAULT;
16 }
17
18
19 public RedrawRequestEvent(Type type) {
20 this.type = type;
21 }
22
23
24 public Type getType() {
25 return type;
26 }
27 }
28 // vim:set ts=4 sw=4 si et sta sts=4 fenc=utf8 :

http://dive4elements.wald.intevation.org