Uses of Class
org.apache.pivot.wtk.TablePane.Row

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

Uses of TablePane.Row in org.apache.pivot.wtk
 

Methods in org.apache.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 org.apache.pivot.wtk that return types with arguments of type TablePane.Row
 Iterator<TablePane.Row> TablePane.RowSequence.iterator()
           
 Sequence<TablePane.Row> TablePane.RowSequence.remove(int index, int count)
           
 

Methods in org.apache.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.rowHighlightedChanged(TablePane.Row row)
          Called when a row's highlighted state has changed.
 void TablePaneListener.Adapter.rowHighlightedChanged(TablePane.Row row)
           
 TablePane.Row TablePane.RowSequence.update(int index, TablePane.Row row)
           
 

Method parameters in org.apache.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 org.apache.pivot.wtk.skin
 

Methods in org.apache.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.rowHighlightedChanged(TablePane.Row row)
           
 

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