Usages of ListCell
Properties
| next | in ListCell | Gets the successor cell of this cell. | |
| previous | in ListCell | Gets the predecessor cell of this cell. | |
| firstCell | in YList | Gets the first cell of this list. | |
| lastCell | in YList | Gets the last cell of this list. | |
| listCells | in YList | Gets a live view of this list as an IEnumerable<ListCell> of ListCell<T>s. | |
| firstSameLayerEdgeCell | in HierarchicalLayoutNodeContext | Gets the first same-layer edge ListCell<T> of all same-layer edges or null if there exists no same-layer edge. |
Method Return Values
| addFirst (T) | in YList | Inserts the given element at the head of this list. | |
| addLast (T) | in YList | Inserts the given element at the tail of this list. | |
| findCell (T) | in YList | Returns the first ListCell<T> that stores the given element. | |
| findCell (function(T):boolean) | in YList | Returns the first ListCell<T> that matches a given predicate. | |
| getCell (number) | in YList | Gets the cell at the given index. | |
| insertAfter (T, ListCell<T>) | in YList | Inserts the given element into this list with respect to a given reference list cell. | |
| insertBefore (T, ListCell<T>) | in YList | Inserts the given element into this list with respect to a given reference list cell. |
Method Parameters
| addFirstCell (ListCell<T>) | in YList | Adds a formerly removed ListCell<T> at the head of this list. | |
| addLastCell (ListCell<T>) | in YList | Adds a formerly removed ListCell<T> at the tail of this list. | |
| indexOfCell (ListCell<T>) | in YList | Returns the zero-based index of the given cell in this list. | |
| insertAfter (T, ListCell<T>) | in YList | Inserts the given element into this list with respect to a given reference list cell. | |
| insertBefore (T, ListCell<T>) | in YList | Inserts the given element into this list with respect to a given reference list cell. | |
| insertCellAfter (ListCell<T>, ListCell<T>) | in YList | Inserts a formerly removed ListCell<T> into this list with respect to a given reference list cell. | |
| insertCellBefore (ListCell<T>, ListCell<T>) | in YList | Inserts a formerly removed ListCell<T> into this list with respect to a given reference list cell. | |
| removeCell (ListCell<T>) | in YList | Removes the given list cell, and hence the element stored in it, from this list. |