Uses of Class
com.mxgraph.layout.hierarchical.model.mxGraphAbstractHierarchyCell
-
Packages that use mxGraphAbstractHierarchyCell Package Description com.mxgraph.layout.hierarchical.model com.mxgraph.layout.hierarchical.stage -
-
Uses of mxGraphAbstractHierarchyCell in com.mxgraph.layout.hierarchical.model
Subclasses of mxGraphAbstractHierarchyCell in com.mxgraph.layout.hierarchical.model Modifier and Type Class Description class
mxGraphHierarchyEdge
An abstraction of a hierarchical edge for the hierarchy layoutclass
mxGraphHierarchyNode
An abstraction of an internal node in the hierarchy layoutMethods in com.mxgraph.layout.hierarchical.model that return types with arguments of type mxGraphAbstractHierarchyCell Modifier and Type Method Description abstract java.util.List<mxGraphAbstractHierarchyCell>
mxGraphAbstractHierarchyCell. getNextLayerConnectedCells(int layer)
Returns the cells this cell connects to on the next layer upjava.util.List<mxGraphAbstractHierarchyCell>
mxGraphHierarchyEdge. getNextLayerConnectedCells(int layer)
Returns the cells this cell connects to on the next layer upjava.util.List<mxGraphAbstractHierarchyCell>
mxGraphHierarchyNode. getNextLayerConnectedCells(int layer)
Returns the cells this cell connects to on the next layer upabstract java.util.List<mxGraphAbstractHierarchyCell>
mxGraphAbstractHierarchyCell. getPreviousLayerConnectedCells(int layer)
Returns the cells this cell connects to on the next layer downjava.util.List<mxGraphAbstractHierarchyCell>
mxGraphHierarchyEdge. getPreviousLayerConnectedCells(int layer)
Returns the cells this cell connects to on the next layer downjava.util.List<mxGraphAbstractHierarchyCell>
mxGraphHierarchyNode. getPreviousLayerConnectedCells(int layer)
Returns the cells this cell connects to on the next layer down -
Uses of mxGraphAbstractHierarchyCell in com.mxgraph.layout.hierarchical.stage
Fields in com.mxgraph.layout.hierarchical.stage declared as mxGraphAbstractHierarchyCell Modifier and Type Field Description mxGraphAbstractHierarchyCell
mxCoordinateAssignment.WeightedCellSorter. cell
The cell whose median value is being calculatedprotected mxGraphAbstractHierarchyCell[][]
mxMedianHybridCrossingReduction. nestedBestRanks
Stores each rank as a collection of cells in the best order found for each layer so farprotected mxGraphAbstractHierarchyCell[][]
mxCoordinateAssignment. nextLayerConnectedCache
A store of connections to the layer above for speedprotected mxGraphAbstractHierarchyCell[][]
mxCoordinateAssignment. previousLayerConnectedCache
A store of connections to the layer below for speedMethods in com.mxgraph.layout.hierarchical.stage with parameters of type mxGraphAbstractHierarchyCell Modifier and Type Method Description protected boolean
mxCoordinateAssignment. repositionValid(mxGraphHierarchyModel model, mxGraphAbstractHierarchyCell cell, int rank, double position)
Determines whether or not a node may be moved to the specified x position on the specified rankprotected void
mxCoordinateAssignment. setEdgePosition(mxGraphAbstractHierarchyCell cell)
Fixes the control pointsprotected void
mxCoordinateAssignment. setVertexLocation(mxGraphAbstractHierarchyCell cell)
Fixes the position of the specified vertexConstructors in com.mxgraph.layout.hierarchical.stage with parameters of type mxGraphAbstractHierarchyCell Constructor Description WeightedCellSorter(mxGraphAbstractHierarchyCell cell, int weightedValue)
-