AnimatedView.java 321 B

123456789101112131415
  1. package view;
  2. /**
  3. * an object that can be displayed in the view.
  4. * The main subclasses are {@link NodeView} and {@link EdgeView}.
  5. * @author kolja
  6. *
  7. */
  8. public interface AnimatedView {
  9. public int getVirtualX();
  10. public int getVirtualY();
  11. public int getVirtualWidth();
  12. public int getVirtualHeight();
  13. }