com.mindfusion.diagramming
Class LinkStyle

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

public class LinkStyle
extends java.lang.Object

The members of this enumeration specify what type of segments an arrow should consist of and how the segments are related one to another. These constants can be used as parameters of the DiagramLink.setStyle(int) method of the DiagramLink class.


Field Summary
static int Bezier
          The arrow segments are Bezier curves.
static int Cascading
          The arrow consists of straight line segments.
static int Polyline
          The arrow consists of straight line segments.
 
Constructor Summary
LinkStyle()
           
 
Method Summary
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Field Detail

Bezier

public static final int Bezier
The arrow segments are Bezier curves. Each two adjacent segments share a control point. The joins between segments are always kept smooth.

See Also:
Constant Field Values

Polyline

public static final int Polyline
The arrow consists of straight line segments.

See Also:
Constant Field Values

Cascading

public static final int Cascading
The arrow consists of straight line segments. All segments are either horizontal or vertical, where each two adjacent segments are orthogonal one to the other.

See Also:
Constant Field Values
Constructor Detail

LinkStyle

public LinkStyle()