com.mindfusion.diagramming.jlayout
Class TreeLayoutDirection

java.lang.Object
  extended by com.mindfusion.diagramming.jlayout.TreeLayoutDirection

public class TreeLayoutDirection
extends java.lang.Object

The members of this enumeration specify the overall direction of the layouts produced by the TreeLayout class. These constants can be used as parameters of the TreeLayout.setDirection(int) method.


Field Summary
static int BottomToTop
          Child nodes are laid out above their parent node.
static int LeftToRight
          Child nodes are laid out to the right of their parent node.
static int RightToLeft
          Child nodes are laid out to the left of their parent node.
static int TopToBottom
          Child nodes are laid out below their parent node.
 
Constructor Summary
TreeLayoutDirection()
           
 
Method Summary
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Field Detail

TopToBottom

public static final int TopToBottom
Child nodes are laid out below their parent node.

See Also:
Constant Field Values

BottomToTop

public static final int BottomToTop
Child nodes are laid out above their parent node.

See Also:
Constant Field Values

LeftToRight

public static final int LeftToRight
Child nodes are laid out to the right of their parent node.

See Also:
Constant Field Values

RightToLeft

public static final int RightToLeft
Child nodes are laid out to the left of their parent node.

See Also:
Constant Field Values
Constructor Detail

TreeLayoutDirection

public TreeLayoutDirection()