Mercurial > dive4elements > gnv-client
comparison gnv-artifacts/src/main/java/de/intevation/gnv/transition/DefaultTransition.java @ 657:af3f56758f59
merged gnv-artifacts/0.5
author | Thomas Arendsen Hein <thomas@intevation.de> |
---|---|
date | Fri, 28 Sep 2012 12:13:53 +0200 |
parents | a887074460b6 |
children | b1f5f2a8840f |
comparison
equal
deleted
inserted
replaced
590:5f5f273c8566 | 657:af3f56758f59 |
---|---|
1 /** | |
2 * | |
3 */ | |
4 package de.intevation.gnv.transition; | |
5 | |
6 import de.intevation.gnv.state.State; | |
7 | |
8 /** | |
9 * @author Tim Englich <tim.englich@intevation.de> | |
10 * | |
11 */ | |
12 public class DefaultTransition extends TransitionBase { | |
13 | |
14 /** | |
15 * The UID of this Class. | |
16 */ | |
17 private static final long serialVersionUID = -2610338646743984581L; | |
18 | |
19 /** | |
20 * Constructor | |
21 */ | |
22 public DefaultTransition() { | |
23 super(); | |
24 } | |
25 | |
26 /** | |
27 * @see de.intevation.gnv.transition.Transition#isValid(de.intevation.gnv.state.State) | |
28 */ | |
29 public boolean isValid(State state) { | |
30 return true; | |
31 } | |
32 | |
33 } |