com.mindfusion.diagramming.jlayout
Class AssistantType

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

public final class AssistantType
extends java.lang.Object

Indicates the type of an assistant node in a tree.


Field Summary
static int Left
          The node is an assistant and it is always positioned to the left of its parent.
static int None
          The node is not an assistant.
static int Normal
          The node is an assistant and its relative position is determined automatically by the layout.
static int Right
          The node is an assistant and it is always positioned to the right of its parent.
 
Constructor Summary
AssistantType()
           
 
Method Summary
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Field Detail

None

public static final int None
The node is not an assistant.

See Also:
Constant Field Values

Normal

public static final int Normal
The node is an assistant and its relative position is determined automatically by the layout.

See Also:
Constant Field Values

Left

public static final int Left
The node is an assistant and it is always positioned to the left of its parent.

See Also:
Constant Field Values

Right

public static final int Right
The node is an assistant and it is always positioned to the right of its parent.

See Also:
Constant Field Values
Constructor Detail

AssistantType

public AssistantType()