Interface DOTVisualizationHelper<N,E>

Type Parameters:
N - node type
E - edge type
All Superinterfaces:
VisualizationHelper<N,E>
All Known Implementing Classes:
AggregateDOTVisualizationHelper, DefaultDOTVisualizationHelper

public interface DOTVisualizationHelper<N,E> extends VisualizationHelper<N,E>
Extension to the VisualizationHelper interface for DOT specific methods.
  • Method Details

    • writePreamble

      void writePreamble(Appendable a) throws IOException
      Called before the node and edge data are written, but after the opening "digraph {" statement.
      Parameters:
      a - the Appendable to write to
      Throws:
      IOException - if writing to a throws.
    • writePostamble

      void writePostamble(Appendable a) throws IOException
      Called after the node and edge data are written, but before the closing brace.
      Parameters:
      a - the Appendable to write to
      Throws:
      IOException - if writing to a throws.