com.mindfusion.diagramming
Class AttachToNode

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

public class AttachToNode
extends java.lang.Object

The members of this enumeration specify how a node is attached to another node. These constants can be used as parameters of the DiagramNode.attachTo(com.mindfusion.diagramming.DiagramLink, int, int) method of the DiagramNode class.


Field Summary
static int BottomCenter
          The attached node follows the bottom-center point of the master node.
static int BottomLeft
          The attached node follows the bottom-left point of the master node.
static int BottomRight
          The attached node follows the bottom-right point of the master node.
static int MiddleLeft
          The attached node follows the middle-left point of the master node.
static int MiddleRight
          The attached node follows the middle-right point of the master node.
static int TopCenter
          The attached node follows the top-center point of the master node.
static int TopLeft
          The attached node follows the top-left point of the master node.
static int TopRight
          The attached node follows the top-right point of the master node.
 
Constructor Summary
AttachToNode()
           
 
Method Summary
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Field Detail

TopLeft

public static final int TopLeft
The attached node follows the top-left point of the master node.

See Also:
Constant Field Values

TopRight

public static final int TopRight
The attached node follows the top-right point of the master node.

See Also:
Constant Field Values

BottomLeft

public static final int BottomLeft
The attached node follows the bottom-left point of the master node.

See Also:
Constant Field Values

BottomRight

public static final int BottomRight
The attached node follows the bottom-right point of the master node.

See Also:
Constant Field Values

TopCenter

public static final int TopCenter
The attached node follows the top-center point of the master node.

See Also:
Constant Field Values

MiddleRight

public static final int MiddleRight
The attached node follows the middle-right point of the master node.

See Also:
Constant Field Values

BottomCenter

public static final int BottomCenter
The attached node follows the bottom-center point of the master node.

See Also:
Constant Field Values

MiddleLeft

public static final int MiddleLeft
The attached node follows the middle-left point of the master node.

See Also:
Constant Field Values
Constructor Detail

AttachToNode

public AttachToNode()