Class: GraphViz::XML
- Inherits:
-
Object
- Object
- GraphViz::XML
- Defined in:
- lib/graphviz/xml.rb
Instance Attribute Summary collapse
-
#graph ⇒ Object
The GraphViz object.
Instance Method Summary collapse
-
#output(*hOpt) ⇒ Object
Generate the graph.
Instance Attribute Details
#graph ⇒ Object
The GraphViz object
24 25 26 |
# File 'lib/graphviz/xml.rb', line 24 def graph @graph end |
Instance Method Details
#output(*hOpt) ⇒ Object
Generate the graph
THIS METHOD IS DEPRECATED, PLEASE USE GraphViz::XML.graph.output
31 32 33 34 |
# File 'lib/graphviz/xml.rb', line 31 def output( *hOpt ) warn "GraphViz::XML.output is deprecated, use GraphViz::XML.graph.output" @graph.output( *hOpt ) end |