Action.java 431 B

1234567891011121314
  1. package Algorithms.Animated;
  2. /**
  3. * An action some kind of command that can be send to the {@link AnimatedAlgorithm} from the {@link AnimationController}.
  4. * {@code FORWARD} tells the {@link AnimatedAlgorithm} to perform one more step in the layout process.
  5. * {@code BACKWARD} tells the {@link AnimatedAlgorithm} to undo the last step in the layout process.
  6. *
  7. * @author kolja
  8. *
  9. */
  10. public enum Action {
  11. FORWARD,
  12. BACKWARD
  13. }