123456789101112131415161718 |
- package algorithm;
- /**
- * An action some kind of command that can be send to the {@link Algorithm} from the {@link AnimationController}.
- * {@code FORWARD} tells the {@link Algorithm} to perform one more step in the layout process.
- * {@code BACKWARD} tells the {@link Algorithm} to undo the last step in the layout process.
- *
- * @author kolja
- *
- */
- public enum Action {
- FORWARD,
- FORWARD_OVER,
- FORWARD_OUT,
- BACKWARD,
- BACKWARD_OVER,
- BACKWARD_OUT
- }
|