Package | Description |
---|---|
com.jgraph.layout |
JGraphLayout's topmost package which contains the basic layout classes and interfaces.
|
com.jgraph.layout.hierarchical.model |
JGraphLayout hierarchical layout internal model for representing the graph in
a manner that provide high performance for the layout
|
Modifier and Type | Method and Description |
---|---|
void |
JGraphFacade.bfs(Object root,
JGraphFacade.CellVisitor visitor)
Performs a breath-first search of the input graph from the specified root
cell using the specified visitor to extract the tree information.
|
void |
JGraphFacade.dfs(Object root,
JGraphFacade.CellVisitor visitor)
Performs a depth-first search of the input graph from the specified root
cell using the specified visitor to extract the tree information.
|
void |
JGraphFacade.dfs(Object parent,
Object root,
Object previousSibling,
JGraphFacade.CellVisitor visitor,
Set seen,
int layer,
int sibling)
Performs a depth-first search of the input graph from the specified root
cell using the specified visitor to extract the tree information
|
void |
JGraphFacade.dfs(Object parent,
Object root,
Object previousSibling,
JGraphFacade.CellVisitor visitor,
Set seen,
Set ancestors,
int layer,
int sibling)
Performs a depth-first search of the input graph from the specified root
cell using the specified visitor to extract the tree information
|
Modifier and Type | Method and Description |
---|---|
void |
JGraphHierarchyModel.dfs(JGraphFacade.CellVisitor visitor,
Object[] dfsRoots,
boolean trackAncestors,
Set seenNodes)
A depth first search through the internal heirarchy model
|
void |
JGraphHierarchyModel.dfs(JGraphHierarchyNode parent,
JGraphHierarchyNode root,
JGraphHierarchyEdge connectingEdge,
JGraphFacade.CellVisitor visitor,
Set seen,
int layer)
Performs a depth first search on the internal hierarchy model
|
void |
JGraphHierarchyModel.dfs(JGraphHierarchyNode parent,
JGraphHierarchyNode root,
JGraphHierarchyEdge connectingEdge,
JGraphFacade.CellVisitor visitor,
Set seen,
int[] ancestors,
int childHash,
int layer)
Performs a depth first search on the internal hierarchy model.
|
Copyright (C) 2001-2009 JGraph Ltd. All rights reserved.