Mercurial > dive4elements > gnv-client
annotate gnv-artifacts/src/main/java/de/intevation/gnv/state/AutoResumeState.java @ 779:b1f5f2a8840f
Ordered imports. Removed needless imports. Removed empty headers.
gnv-artifacts/trunk@854 c6561f87-3c4e-4783-a992-168aeb5c3f6f
author | Sascha L. Teichmann <sascha.teichmann@intevation.de> |
---|---|
date | Mon, 29 Mar 2010 08:51:20 +0000 |
parents | 9a828e5a2390 |
children | c4156275c1e1 |
rev | line source |
---|---|
734
8f7fe0cc6e5a
Added Interface and Defaultimplementation for States which can be handled without any userinteraction.
Tim Englich <tim.englich@intevation.de>
parents:
diff
changeset
|
1 package de.intevation.gnv.state; |
779
b1f5f2a8840f
Ordered imports. Removed needless imports. Removed empty headers.
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
778
diff
changeset
|
2 |
734
8f7fe0cc6e5a
Added Interface and Defaultimplementation for States which can be handled without any userinteraction.
Tim Englich <tim.englich@intevation.de>
parents:
diff
changeset
|
3 /** |
778
9a828e5a2390
Removed trailing whitespace
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
734
diff
changeset
|
4 * |
734
8f7fe0cc6e5a
Added Interface and Defaultimplementation for States which can be handled without any userinteraction.
Tim Englich <tim.englich@intevation.de>
parents:
diff
changeset
|
5 * Markerinterface for States which should be used for |
778
9a828e5a2390
Removed trailing whitespace
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
734
diff
changeset
|
6 * automatically Resume and jump to the next State using |
734
8f7fe0cc6e5a
Added Interface and Defaultimplementation for States which can be handled without any userinteraction.
Tim Englich <tim.englich@intevation.de>
parents:
diff
changeset
|
7 * the Conditions of the Transitions which are linked to it. |
8f7fe0cc6e5a
Added Interface and Defaultimplementation for States which can be handled without any userinteraction.
Tim Englich <tim.englich@intevation.de>
parents:
diff
changeset
|
8 * @author Tim Englich <tim.englich@intevation.de> |
8f7fe0cc6e5a
Added Interface and Defaultimplementation for States which can be handled without any userinteraction.
Tim Englich <tim.englich@intevation.de>
parents:
diff
changeset
|
9 * |
8f7fe0cc6e5a
Added Interface and Defaultimplementation for States which can be handled without any userinteraction.
Tim Englich <tim.englich@intevation.de>
parents:
diff
changeset
|
10 */ |
8f7fe0cc6e5a
Added Interface and Defaultimplementation for States which can be handled without any userinteraction.
Tim Englich <tim.englich@intevation.de>
parents:
diff
changeset
|
11 public interface AutoResumeState extends State{ |
8f7fe0cc6e5a
Added Interface and Defaultimplementation for States which can be handled without any userinteraction.
Tim Englich <tim.englich@intevation.de>
parents:
diff
changeset
|
12 |
8f7fe0cc6e5a
Added Interface and Defaultimplementation for States which can be handled without any userinteraction.
Tim Englich <tim.englich@intevation.de>
parents:
diff
changeset
|
13 } |