Uses of Interface
org.inxar.syntacs.util.GraphViz

Packages that use GraphViz
com.inxar.syntacs.automaton.finite Defines classes which implement determinitic finite automata and their construction. 
com.inxar.syntacs.automaton.pushdown Defines classes which implement pushdown automata and their construction. 
com.inxar.syntacs.util Defines classes and utilities which implement fundamental abstract data types. 
org.inxar.syntacs.util Declares interfaces which model basic and or fundamental abstract data types used throughout the translation process. 
 

Uses of GraphViz in com.inxar.syntacs.automaton.finite
 

Methods in com.inxar.syntacs.automaton.finite with parameters of type GraphViz
 void TreeDFA.vizualize(GraphViz dot)
           
 void TreeDFA.State.vizualize(GraphViz dot)
           
 void TreeDFA.State.vizualize(GraphViz dot, TreeDFA.Edge edge)
           
 void TreeDFA.Edge.vizualize(GraphViz dot)
           
 

Uses of GraphViz in com.inxar.syntacs.automaton.pushdown
 

Methods in com.inxar.syntacs.automaton.pushdown with parameters of type GraphViz
 void LALR1Constructor.vizualize(GraphViz dot)
           
 void ArrayDPAConstructor.vizualize(GraphViz dot)
           
 void LR1Constructor.vizualize(GraphViz dot)
           
 

Uses of GraphViz in com.inxar.syntacs.util
 

Classes in com.inxar.syntacs.util that implement GraphViz
 class Dot
          Basic implementation of the GraphViz interface.
 

Methods in com.inxar.syntacs.util that return GraphViz
 GraphViz Dot.attr(String key, String val)
           
 GraphViz Dot.comment(String text)
           
 GraphViz Dot.subgraph(String name)
           
 

Uses of GraphViz in org.inxar.syntacs.util
 

Methods in org.inxar.syntacs.util that return GraphViz
 GraphViz GraphViz.comment(String text)
          Sets the comment for the graph.
 GraphViz GraphViz.attr(String key, String value)
          Adds a new attribute to the graph and returns the graph instance.
 GraphViz GraphViz.subgraph(String name)
          Adds a new subgraph to the graph and returns it to the caller for further refinement.
 

Methods in org.inxar.syntacs.util with parameters of type GraphViz
 void Vizualizable.vizualize(GraphViz viz)
          Burn state to the GraphViz instance such that the instance may be visualized in postscript.