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(java.lang.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(java.lang.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(java.lang.Object parent,
java.lang.Object root,
java.lang.Object previousSibling,
JGraphFacade.CellVisitor visitor,
java.util.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(java.lang.Object parent,
java.lang.Object root,
java.lang.Object previousSibling,
JGraphFacade.CellVisitor visitor,
java.util.Set seen,
java.util.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,
java.lang.Object[] dfsRoots,
boolean trackAncestors,
java.util.Set seenNodes)
A depth first search through the internal heirarchy model
|
void |
JGraphHierarchyModel.dfs(JGraphHierarchyNode parent,
JGraphHierarchyNode root,
JGraphHierarchyEdge connectingEdge,
JGraphFacade.CellVisitor visitor,
java.util.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,
java.util.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.