Package | Description |
---|---|
org.netbeans.api.visual.graph.layout |
This package contains built-in graph-oriented layout algorithms.
|
org.netbeans.api.visual.layout |
This package contains
Layout interface which defines a widget-layout. |
Modifier and Type | Class | Description |
---|---|---|
class |
GridGraphLayout<N,E> |
This class represents a graph-oriented layout which organizes nodes into a grid.
|
class |
TreeGraphLayout<N,E> |
This class supplies the tree graph-oriented layout for a GraphScene.
|
Modifier and Type | Method | Description |
---|---|---|
static <N,E> GraphLayout<N,E> |
GraphLayoutFactory.createHierarchicalGraphLayout(GraphScene<N,E> graphScene,
boolean animate) |
|
static <N,E> GraphLayout<N,E> |
GraphLayoutFactory.createHierarchicalGraphLayout(GraphScene<N,E> graphScene,
boolean animate,
boolean inverted) |
|
static <N,E> GraphLayout<N,E> |
GraphLayoutFactory.createHierarchicalGraphLayout(GraphScene<N,E> graphScene,
boolean animate,
boolean inverted,
int xOffset,
int layerOffset) |
|
static <N,E> GraphLayout<N,E> |
GraphLayoutFactory.createOrthogonalGraphLayout(GraphScene<N,E> graphScene,
boolean animate) |
|
static <N,E> GraphLayout<N,E> |
GraphLayoutFactory.createTreeGraphLayout(int originX,
int originY,
int verticalGap,
int horizontalGap,
boolean vertical) |
Creates a tree graph layout.
|
static <N,E> GraphLayout<N,E> |
GraphLayoutFactory.createTreeGraphLayout(int originX,
int originY,
int verticalGap,
int horizontalGap,
boolean vertical,
boolean minimizeGap) |
Creates a tree graph layout.
|
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.
|
Modifier and Type | Method | Description |
---|---|---|
static <N,E> void |
GraphLayoutSupport.setTreeGraphLayoutProperties(GraphLayout<N,E> graph,
int originX,
int originY,
int verticalGap,
int horizontalGap,
boolean vertical) |
Sets properties to 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) |
Sets properties to 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.
|
static <N,E> void |
GraphLayoutSupport.setTreeGraphLayoutRootNode(GraphLayout<N,E> graph,
N rootNode) |
Sets a root node to a tree graph layout.
|
Modifier and Type | Method | Description |
---|---|---|
static <N,E> SceneLayout |
LayoutFactory.createSceneGraphLayout(GraphPinScene<N,E,?> graphPinScene,
GraphLayout<N,E> graphLayout) |
Creates a scene layout which performs a specified graph-oriented layout on a specified GraphPinScene.
|
static <N,E> SceneLayout |
LayoutFactory.createSceneGraphLayout(GraphScene<N,E> graphScene,
GraphLayout<N,E> graphLayout) |
Creates a scene layout which performs a specified graph-oriented layout on a specified GraphScene.
|
Built on April 24 2018. | Portions Copyright 1997-2018 Oracle. All rights reserved.