Uses of Class
org.abego.treelayout.demo.TextInBox
-
Packages that use TextInBox Package Description org.abego.treelayout.demo Classes used by various "Demo" applications for theTreeLayout
.org.abego.treelayout.demo.svg Demonstrates how to use theTreeLayout
to create a tree diagram with SVG (Scalable Vector Graphic).org.abego.treelayout.demo.swing Demonstration how to use theTreeLayout
to render a tree in a Swing application. -
-
Uses of TextInBox in org.abego.treelayout.demo
Methods in org.abego.treelayout.demo that return types with arguments of type TextInBox Modifier and Type Method Description static TreeForTreeLayout<TextInBox>
SampleTreeFactory. createSampleTree()
static TreeForTreeLayout<TextInBox>
SampleTreeFactory. createSampleTree2()
Methods in org.abego.treelayout.demo with parameters of type TextInBox Modifier and Type Method Description double
TextInBoxNodeExtentProvider. getHeight(TextInBox treeNode)
double
TextInBoxNodeExtentProvider. getWidth(TextInBox treeNode)
-
Uses of TextInBox in org.abego.treelayout.demo.svg
Fields in org.abego.treelayout.demo.svg with type parameters of type TextInBox Modifier and Type Field Description private TreeLayout<TextInBox>
SVGForTextInBoxTree. treeLayout
Methods in org.abego.treelayout.demo.svg that return types with arguments of type TextInBox Modifier and Type Method Description private java.lang.Iterable<TextInBox>
SVGForTextInBoxTree. getChildren(TextInBox parent)
private TreeForTreeLayout<TextInBox>
SVGForTextInBoxTree. getTree()
Methods in org.abego.treelayout.demo.svg with parameters of type TextInBox Modifier and Type Method Description private void
SVGForTextInBoxTree. generateBox(java.lang.StringBuilder result, TextInBox textInBox)
private void
SVGForTextInBoxTree. generateEdges(java.lang.StringBuilder result, TextInBox parent)
private java.awt.geom.Rectangle2D.Double
SVGForTextInBoxTree. getBoundsOfNode(TextInBox node)
private java.lang.Iterable<TextInBox>
SVGForTextInBoxTree. getChildren(TextInBox parent)
Constructor parameters in org.abego.treelayout.demo.svg with type arguments of type TextInBox Constructor Description SVGForTextInBoxTree(TreeLayout<TextInBox> treeLayout)
-
Uses of TextInBox in org.abego.treelayout.demo.swing
Fields in org.abego.treelayout.demo.swing with type parameters of type TextInBox Modifier and Type Field Description private TreeLayout<TextInBox>
TextInBoxTreePane. treeLayout
Methods in org.abego.treelayout.demo.swing that return types with arguments of type TextInBox Modifier and Type Method Description private java.lang.Iterable<TextInBox>
TextInBoxTreePane. getChildren(TextInBox parent)
private static TreeForTreeLayout<TextInBox>
SwingDemo. getSampleTree(java.lang.String treeName)
private TreeForTreeLayout<TextInBox>
TextInBoxTreePane. getTree()
Methods in org.abego.treelayout.demo.swing with parameters of type TextInBox Modifier and Type Method Description private java.awt.geom.Rectangle2D.Double
TextInBoxTreePane. getBoundsOfNode(TextInBox node)
private java.lang.Iterable<TextInBox>
TextInBoxTreePane. getChildren(TextInBox parent)
private void
TextInBoxTreePane. paintBox(java.awt.Graphics g, TextInBox textInBox)
private void
TextInBoxTreePane. paintEdges(java.awt.Graphics g, TextInBox parent)
Constructor parameters in org.abego.treelayout.demo.swing with type arguments of type TextInBox Constructor Description TextInBoxTreePane(TreeLayout<TextInBox> treeLayout)
Specifies the tree to be displayed by passing in aTreeLayout
for that tree.
-