com.mindfusion.diagramming
Class TreeLayoutLinkType

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

public final class TreeLayoutLinkType
extends java.lang.Object

The members of this enumeration specify what style to assign to the arrows processed by TreeLayout. These constants can be used as parameters of the TreeLayout.setLinkStyle(int) method of the TreeLayout class.


Field Summary
static int Cascading2
          Each arrow should be a cascade of two orthogonal straight line segments.
static int Cascading3
          Each arrow should be a cascade of three orthogonal straight line segments.
static int Rounded
          Each arrow should consist of one Bezier segment.
static int Straight
          Each arrow should consist of on straight line segment.
 
Constructor Summary
TreeLayoutLinkType()
           
 
Method Summary
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Field Detail

Straight

public static final int Straight
Each arrow should consist of on straight line segment.

See Also:
Constant Field Values

Cascading2

public static final int Cascading2
Each arrow should be a cascade of two orthogonal straight line segments.

See Also:
Constant Field Values

Cascading3

public static final int Cascading3
Each arrow should be a cascade of three orthogonal straight line segments.

See Also:
Constant Field Values

Rounded

public static final int Rounded
Each arrow should consist of one Bezier segment.

See Also:
Constant Field Values
Constructor Detail

TreeLayoutLinkType

public TreeLayoutLinkType()