Uses of Class
pivot.wtk.TablePane.Row

Packages that use TablePane.Row
pivot.wtk Contains classes that define the structure and behavior of WTK user interface components. 
pivot.wtk.skin Contains common skins and abstract base classes for theme-specific skins. 
 

Uses of TablePane.Row in pivot.wtk
 

Methods in pivot.wtk that return TablePane.Row
 TablePane.Row TablePane.RowSequence.get(int index)
           
 TablePane.Row TablePane.RowSequence.update(int index, TablePane.Row row)
           
 

Methods in pivot.wtk that return types with arguments of type TablePane.Row
 Sequence<TablePane.Row> TablePane.RowSequence.remove(int index, int count)
           
 

Methods in pivot.wtk with parameters of type TablePane.Row
 int TablePane.RowSequence.add(TablePane.Row row)
           
 void TablePaneListener.cellInserted(TablePane.Row row, int column)
          Called when a cell has been inserted into a table pane.
 void TablePaneListener.Adapter.cellInserted(TablePane.Row row, int column)
           
 void TablePaneListener.cellsRemoved(TablePane.Row row, int column, Sequence<Component> removed)
          Called when cell's have been removed from a table pane.
 void TablePaneListener.Adapter.cellsRemoved(TablePane.Row row, int column, Sequence<Component> removed)
           
 void TablePaneListener.cellUpdated(TablePane.Row row, int column, Component previousComponent)
          Called when a cell has been updated in a table pane.
 void TablePaneListener.Adapter.cellUpdated(TablePane.Row row, int column, Component previousComponent)
           
 int TablePane.RowSequence.indexOf(TablePane.Row row)
           
 void TablePane.RowSequence.insert(TablePane.Row row, int index)
           
 int TablePane.RowSequence.remove(TablePane.Row row)
           
 void TablePaneListener.rowHeightChanged(TablePane.Row row, int previousHeight, boolean previousRelative)
          Called when a row's height has changed.
 void TablePaneListener.Adapter.rowHeightChanged(TablePane.Row row, int previousHeight, boolean previousRelative)
           
 void TablePaneListener.rowSelectedChanged(TablePane.Row row)
          Called when a row's selected state has changed.
 void TablePaneListener.Adapter.rowSelectedChanged(TablePane.Row row)
           
 TablePane.Row TablePane.RowSequence.update(int index, TablePane.Row row)
           
 

Method parameters in pivot.wtk with type arguments of type TablePane.Row
 void TablePaneListener.rowsRemoved(TablePane tablePane, int index, Sequence<TablePane.Row> rows)
          Called when rows have been removed from a table pane.
 void TablePaneListener.Adapter.rowsRemoved(TablePane tablePane, int index, Sequence<TablePane.Row> rows)
           
 

Uses of TablePane.Row in pivot.wtk.skin
 

Methods in pivot.wtk.skin with parameters of type TablePane.Row
 void TablePaneSkin.cellInserted(TablePane.Row row, int column)
           
 void TablePaneSkin.cellsRemoved(TablePane.Row row, int column, Sequence<Component> removed)
           
 void TablePaneSkin.cellUpdated(TablePane.Row row, int column, Component previousComponent)
           
 void TablePaneSkin.rowHeightChanged(TablePane.Row row, int previousHeight, boolean previousRelative)
           
 void TablePaneSkin.rowSelectedChanged(TablePane.Row row)
           
 

Method parameters in pivot.wtk.skin with type arguments of type TablePane.Row
 void TablePaneSkin.rowsRemoved(TablePane tablePane, int index, Sequence<TablePane.Row> rows)