com.mindfusion.diagramming.jlayout
Class BaseLayout

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

public class BaseLayout
extends java.lang.Object

Specifies how OrthogonalLayout should arrange nodes.


Field Summary
static int Cascading
          Use TreeLayout to arrange nodes.
static int Custom
          Use the current node configuration.
static int Grid
          Use GridLayout to arrange nodes.
static int Layered
          Use LayeredLayout to arrange nodes.
 
Constructor Summary
BaseLayout()
           
 
Method Summary
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Field Detail

Layered

public static final int Layered
Use LayeredLayout to arrange nodes.

See Also:
Constant Field Values

Grid

public static final int Grid
Use GridLayout to arrange nodes.

See Also:
Constant Field Values

Custom

public static final int Custom
Use the current node configuration.

See Also:
Constant Field Values

Cascading

public static final int Cascading
Use TreeLayout to arrange nodes.

See Also:
Constant Field Values
Constructor Detail

BaseLayout

public BaseLayout()