Package | Description |
---|---|
org.netbeans.api.visual.graph.layout |
This package contains built-in graph-oriented layout algorithms.
|
Modifier and Type | Method and Description |
---|---|
static TreeGraphLayoutAlignment |
TreeGraphLayoutAlignment.valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static TreeGraphLayoutAlignment[] |
TreeGraphLayoutAlignment.values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
Modifier and Type | Method and Description |
---|---|
static <N,E> GraphLayout<N,E> |
GraphLayoutFactory.createTreeGraphLayout(int originX,
int originY,
int verticalGap,
int horizontalGap,
boolean vertical,
boolean minimizeGap,
TreeGraphLayoutAlignment alignment)
Creates a tree graph layout.
|
static <N,E> void |
GraphLayoutSupport.setTreeGraphLayoutProperties(GraphLayout<N,E> graph,
int originX,
int originY,
int verticalGap,
int horizontalGap,
boolean vertical,
boolean minimizeGap,
TreeGraphLayoutAlignment alignment)
Sets properties to a tree graph layout.
|