BackwardAction.java 283 B

1234567891011121314
  1. package animation;
  2. /**
  3. * An action that reverts another Action.
  4. * For example this is used to go one step backwards in the node placement algorithm.
  5. * @author kolja
  6. *
  7. */
  8. public interface BackwardAction {
  9. /**
  10. * Undo another action.
  11. */
  12. public void reverse();
  13. }