ScopvizGraphOperator.java 454 B

123456789101112131415161718192021
  1. package de.tu_darmstadt.informatik.tk.scopviz.metrics.interfaces;
  2. import de.tu_darmstadt.informatik.tk.scopviz.graphs.GraphManager;
  3. public interface ScopvizGraphOperator {
  4. /**
  5. * calculates a new Version of the Graph using the given operator.
  6. *
  7. * @param g
  8. * the GraphManager of the currently active Graph
  9. *
  10. */
  11. public void calculate(GraphManager g);
  12. /**
  13. * returns the name of the Metric.
  14. */
  15. public String getName();
  16. }