Package | Description |
---|---|
com.yworks.yfiles.algorithms | |
com.yworks.yfiles.layout.hierarchic |
Provides hierarchic layout style algorithms.
|
Modifier and Type | Method and Description |
---|---|
ListCell |
YList.addFirst(Object o)
Inserts the given object at the head of this list.
|
ListCell |
YList.addLast(Object o)
Inserts the given object at the tail of this list.
|
ListCell |
YList.cyclicPred(ListCell c)
Returns the cyclic predecessor cell of the given list cell.
|
ListCell |
YList.cyclicSucc(ListCell c)
Returns the cyclic successor cell of the given list cell.
|
ListCell |
YList.findCell(Object o)
Returns the
ListCell where object o is stored. |
ListCell |
YList.firstCell()
Gets the first cell of this list.
|
ListCell |
YList.getCell(int index)
Gets the cell at the given index.
|
ListCell |
YList.insertAfter(Object o,
ListCell refCell)
Inserts the given object into this list with respect to a given reference list cell.
|
ListCell |
YList.insertBefore(Object o,
ListCell refCell)
Inserts the given object into this list with respect to a given reference list cell.
|
ListCell |
YList.lastCell()
Gets the last cell of this list.
|
ListCell |
ListCell.pred()
Returns the predecessor cell of this cell.
|
ListCell |
YList.predCell(ListCell c)
Returns the predecessor cell of the given list cell.
|
ListCell |
YList.push(Object o)
Equivalent to
YList.addFirst(Object) . |
ListCell |
ListCell.succ()
Returns the successor cell of this cell.
|
ListCell |
YList.succCell(ListCell c)
Returns the successor cell of the given list cell.
|
Modifier and Type | Method and Description |
---|---|
void |
YList.addFirstCell(ListCell cell)
Adds a formerly removed ListCell object at the head of this list.
|
void |
YList.addLastCell(ListCell cell)
Adds a formerly removed ListCell object at the tail of this list.
|
ListCell |
YList.cyclicPred(ListCell c)
Returns the cyclic predecessor cell of the given list cell.
|
ListCell |
YList.cyclicSucc(ListCell c)
Returns the cyclic successor cell of the given list cell.
|
Object |
YList.getInfo(ListCell c)
Returns the element stored in the given list cell.
|
double |
BorderLine.getValueAt(ListCell cell,
double pos)
Returns the value that is set on this borderline at the specified position.
|
ListCell |
YList.insertAfter(Object o,
ListCell refCell)
Inserts the given object into this list with respect to a given reference list cell.
|
ListCell |
YList.insertBefore(Object o,
ListCell refCell)
Inserts the given object into this list with respect to a given reference list cell.
|
void |
YList.insertCellAfter(ListCell cellToInsert,
ListCell refCell)
Inserts a formerly removed ListCell object into this list with respect to a given reference list cell.
|
void |
YList.insertCellBefore(ListCell cellToInsert,
ListCell refCell)
Inserts a formerly removed ListCell object into this list with respect to a given reference list cell.
|
ListCell |
YList.predCell(ListCell c)
Returns the predecessor cell of the given list cell.
|
Object |
YList.removeCell(ListCell c)
Removes the given list cell, and hence the element stored in it, from this list.
|
void |
YList.setInfo(ListCell c,
Object value)
Updates the element stored in the given list cell with the given object.
|
ListCell |
YList.succCell(ListCell c)
Returns the successor cell of the given list cell.
|
Modifier and Type | Method and Description |
---|---|
ListCell |
INodeData.getFirstSameLayerEdgeCell()
Gets the first same-layer edge
ListCell of all same-layer edges or null if there exists no same-layer
edge. |