Uses of Class
org.netbeans.api.visual.graph.GraphScene
Packages that use GraphScene
Package
Description
This package contains built-in graph-oriented models.
This package contains built-in graph-oriented layout algorithms.
This package contains
Layout
interface which defines a widget-layout.-
Uses of GraphScene in org.netbeans.api.visual.graph
Subclasses of GraphScene in org.netbeans.api.visual.graphModifier and TypeClassDescriptionstatic class
This class is a particular GraphScene where nodes and edges are represented with String class. -
Uses of GraphScene in org.netbeans.api.visual.graph.layout
Methods in org.netbeans.api.visual.graph.layout with parameters of type GraphSceneModifier and TypeMethodDescriptionstatic <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) final void
GraphLayout.layoutGraph
(GraphScene<N, E> graphScene) Invokes graph-oriented layout on a GraphScene.final void
GraphLayout.layoutNodes
(GraphScene<N, E> graphScene, Collection<N> nodes) Invokes resolving of locations for a collection of nodes in a GraphScene.Constructors in org.netbeans.api.visual.graph.layout with parameters of type GraphSceneModifierConstructorDescriptionTreeGraphLayout
(GraphScene<N, E> scene, int originX, int originY, int verticalGap, int horizontalGap, boolean vertical) Creates a graph-oriented tree layout. -
Uses of GraphScene in org.netbeans.api.visual.layout
Methods in org.netbeans.api.visual.layout with parameters of type GraphSceneModifier and TypeMethodDescriptionstatic <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.