org.apache.pivot.wtk
Class GridPane.RowSequence
java.lang.Object
org.apache.pivot.wtk.GridPane.RowSequence
- All Implemented Interfaces:
- Iterable<GridPane.Row>, org.apache.pivot.collections.Sequence<GridPane.Row>
- Enclosing class:
- GridPane
public final class GridPane.RowSequence
- extends Object
- implements org.apache.pivot.collections.Sequence<GridPane.Row>, Iterable<GridPane.Row>
Class that manages a grid pane's row list. Callers get access to the
row sequence via GridPane.getRows().
| Nested classes/interfaces inherited from interface org.apache.pivot.collections.Sequence |
org.apache.pivot.collections.Sequence.Tree<T> |
| Methods inherited from class java.lang.Object |
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
add
public int add(GridPane.Row row)
- Specified by:
add in interface org.apache.pivot.collections.Sequence<GridPane.Row>
insert
public void insert(GridPane.Row row,
int index)
- Specified by:
insert in interface org.apache.pivot.collections.Sequence<GridPane.Row>
update
public GridPane.Row update(int index,
GridPane.Row row)
- Specified by:
update in interface org.apache.pivot.collections.Sequence<GridPane.Row>
remove
public int remove(GridPane.Row row)
- Specified by:
remove in interface org.apache.pivot.collections.Sequence<GridPane.Row>
remove
public org.apache.pivot.collections.Sequence<GridPane.Row> remove(int index,
int count)
- Specified by:
remove in interface org.apache.pivot.collections.Sequence<GridPane.Row>
get
public GridPane.Row get(int index)
- Specified by:
get in interface org.apache.pivot.collections.Sequence<GridPane.Row>
indexOf
public int indexOf(GridPane.Row row)
- Specified by:
indexOf in interface org.apache.pivot.collections.Sequence<GridPane.Row>
getLength
public int getLength()
- Specified by:
getLength in interface org.apache.pivot.collections.Sequence<GridPane.Row>
iterator
public Iterator<GridPane.Row> iterator()
- Specified by:
iterator in interface Iterable<GridPane.Row>