|
JGraph |
|||||||||
PREV NEXT | FRAMES NO FRAMES |
Packages that use JGraphFacade.CellVisitor | |
---|---|
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 |
Uses of JGraphFacade.CellVisitor in com.jgraph.layout |
---|
Methods in com.jgraph.layout with parameters of type JGraphFacade.CellVisitor | |
---|---|
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 |
Uses of JGraphFacade.CellVisitor in com.jgraph.layout.hierarchical.model |
---|
Methods in com.jgraph.layout.hierarchical.model with parameters of type JGraphFacade.CellVisitor | |
---|---|
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. |
|
JGraph |
|||||||||
PREV NEXT | FRAMES NO FRAMES |