com.mindfusion.diagramming
Class TreeLayoutType

java.lang.Object
  extended by com.mindfusion.diagramming.TreeLayoutType

public final class TreeLayoutType
extends java.lang.Object

The members of this enumeration specify what the shape of a tree arranged by the TreeLayout class should be. These constants can be used as parameters of the TreeLayout.setType(int) method of the TreeLayout class.


Field Summary
static int Cascading
          Windows Explorer- like tree.
static int Centered
          Center parent nodes above their children.
static int Radial
          The root node is at the center and each next level of children is further from the root.
 
Constructor Summary
TreeLayoutType()
           
 
Method Summary
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Field Detail

Cascading

public static final int Cascading
Windows Explorer- like tree.

See Also:
Constant Field Values

Centered

public static final int Centered
Center parent nodes above their children.

See Also:
Constant Field Values

Radial

public static final int Radial
The root node is at the center and each next level of children is further from the root. Each level is arranged on a circle around the root.

See Also:
Constant Field Values
Constructor Detail

TreeLayoutType

public TreeLayoutType()