comparison flys-client/src/main/java/de/intevation/flys/client/client/event/OnMoveEvent.java @ 527:902609b5cc79

Added a navigation panel to the bottom of the theme control panel to move themes up/down (function not implemented yet). flys-client/trunk@2007 c6561f87-3c4e-4783-a992-168aeb5c3f6f
author Ingo Weinzierl <ingo.weinzierl@intevation.de>
date Wed, 25 May 2011 16:23:16 +0000
parents
children
comparison
equal deleted inserted replaced
526:96e60e0a4345 527:902609b5cc79
1 package de.intevation.flys.client.client.event;
2
3
4 /**
5 * @author <a href="mailto:ingo.weinzierl@intevation.de">Ingo Weinzierl</a>
6 */
7 public class OnMoveEvent {
8
9 public static final int TOP = 0;
10 public static final int UP = 1;
11 public static final int DOWN = 2;
12 public static final int BOTTOM = 3;
13
14
15 protected int type;
16
17
18 public OnMoveEvent(int type) {
19 this.type = type;
20 }
21
22
23 public int getType() {
24 return type;
25 }
26 }
27 // vim:set ts=4 sw=4 si et sta sts=4 fenc=utf8 :

http://dive4elements.wald.intevation.org