comparison flys-client/src/main/java/de/intevation/flys/client/client/event/RedrawRequestEvent.java @ 911:4668357b255e

#259 Refresh charts after loading new Themes / Artifacts from Datacage. flys-client/trunk@2768 c6561f87-3c4e-4783-a992-168aeb5c3f6f
author Ingo Weinzierl <ingo.weinzierl@intevation.de>
date Thu, 15 Sep 2011 17:01:12 +0000
parents
children
comparison
equal deleted inserted replaced
910:7f72239e56c8 911:4668357b255e
1 package de.intevation.flys.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