Mercurial > dive4elements > gnv-client
comparison gnv-artifacts/src/main/java/de/intevation/gnv/transition/DefaultTransition.java @ 875:5e9efdda6894
merged gnv-artifacts/1.0
author | Thomas Arendsen Hein <thomas@intevation.de> |
---|---|
date | Fri, 28 Sep 2012 12:13:56 +0200 |
parents | 05bf8534a35a |
children | f953c9a559d8 |
comparison
equal
deleted
inserted
replaced
722:bb3ffe7d719e | 875:5e9efdda6894 |
---|---|
1 package de.intevation.gnv.transition; | |
2 | |
3 import de.intevation.gnv.state.State; | |
4 | |
5 /** | |
6 * The default implementation of a <code>Transition</code>. | |
7 * | |
8 * @author <a href="mailto:tim.englich@intevation.de">Tim Englich</a> | |
9 * | |
10 */ | |
11 public class DefaultTransition extends TransitionBase { | |
12 | |
13 /** | |
14 * The UID of this Class. | |
15 */ | |
16 private static final long serialVersionUID = -2610338646743984581L; | |
17 | |
18 /** | |
19 * Constructor | |
20 */ | |
21 public DefaultTransition() { | |
22 super(); | |
23 } | |
24 | |
25 | |
26 public boolean isValid(State state) { | |
27 return true; | |
28 } | |
29 | |
30 } | |
31 // vim:set ts=4 sw=4 si et sta sts=4 fenc=utf8 : |