EdgeCreatedListener.java 468 B

123456789101112131415161718192021
  1. package de.tu_darmstadt.informatik.tk.scopviz.graphs;
  2. /**
  3. * Interface for listeners on new Edges being created.
  4. *
  5. * @author Jascha Bohne
  6. * @version 1.0
  7. *
  8. */
  9. public interface EdgeCreatedListener {
  10. /**
  11. * Should be called whenever a new Edge has been created.
  12. *
  13. * @param e
  14. * the newly created Edge
  15. * @param graphID
  16. * the ID of the Graph that had the Edge added to it
  17. */
  18. public void edgeCreated(MyEdge e, String graphID);
  19. }