com.mindfusion.diagramming
Class RerouteLinks

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

public class RerouteLinks
extends java.lang.Object

The members of this enumeration specify in what circumstances JDiagram should automatically re-route arrows. A bitwise combination of these constants can be used as a parameter of the RoutingOptions.setTriggerRerouting(int) method of the RoutingOptions class.


Field Summary
static int Never
          Never re-route arrows.
static int WhenIntersectNode
          Look for a new arrow route only if the arrow intersects a node.
static int WhenModified
          Look for a new arrow route each time an end point of the arrow is moved.
static int WhileCreating
          Looks for arrow route while the arrow is being initially drawn by the user.
 
Constructor Summary
RerouteLinks()
           
 
Method Summary
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Field Detail

Never

public static final int Never
Never re-route arrows.

See Also:
Constant Field Values

WhenModified

public static final int WhenModified
Look for a new arrow route each time an end point of the arrow is moved.

See Also:
Constant Field Values

WhenIntersectNode

public static final int WhenIntersectNode
Look for a new arrow route only if the arrow intersects a node.

See Also:
Constant Field Values

WhileCreating

public static final int WhileCreating
Looks for arrow route while the arrow is being initially drawn by the user.

See Also:
Constant Field Values
Constructor Detail

RerouteLinks

public RerouteLinks()