Uses of Class
pivot.wtk.TablePane

Packages that use TablePane
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 in pivot.wtk
 

Methods in pivot.wtk that return TablePane
 TablePane TablePane.Row.getTablePane()
          Returns the table pane with which this row is associated.
 TablePane TablePane.Column.getTablePane()
          Returns the table pane with which this column is associated.
 

Methods in pivot.wtk with parameters of type TablePane
 void TablePaneListener.columnInserted(TablePane tablePane, int index)
          Called when a column has been inserted into a table pane.
 void TablePaneListener.Adapter.columnInserted(TablePane tablePane, int index)
           
 void TablePaneAttributeListener.columnSpanChanged(TablePane tablePane, Component component, int previousColumnSpan)
          Called when a component's column span attribute has changed.
 void TablePaneListener.columnsRemoved(TablePane tablePane, int index, Sequence<TablePane.Column> columns)
          Called when column's have been removed from a table pane.
 void TablePaneListener.Adapter.columnsRemoved(TablePane tablePane, int index, Sequence<TablePane.Column> columns)
           
 void TablePaneListener.rowInserted(TablePane tablePane, int index)
          Called when a row has been inserted into a table pane.
 void TablePaneListener.Adapter.rowInserted(TablePane tablePane, int index)
           
 void TablePaneAttributeListener.rowSpanChanged(TablePane tablePane, Component component, int previousRowSpan)
          Called when a component's row span attribute has changed.
 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 in pivot.wtk.skin
 

Methods in pivot.wtk.skin with parameters of type TablePane
 void TablePaneSkin.columnInserted(TablePane tablePane, int index)
           
 void TablePaneSkin.columnSpanChanged(TablePane tablePane, Component component, int previousColumnSpan)
           
 void TablePaneSkin.columnsRemoved(TablePane tablePane, int index, Sequence<TablePane.Column> columns)
           
static int[] TablePaneSkin.getColumnWidths(TablePane tablePane, int width, int[] rowHeights)
          Gets the width of each column of a table pane given the specified constraints.
static int[] TablePaneSkin.getRowHeights(TablePane tablePane, int height, int[] columnWidths)
          Gets the height of each row of a table pane given the specified constraints.
 void TablePaneSkin.rowInserted(TablePane tablePane, int index)
           
 void TablePaneSkin.rowSpanChanged(TablePane tablePane, Component component, int previousRowSpan)
           
 void TablePaneSkin.rowsRemoved(TablePane tablePane, int index, Sequence<TablePane.Row> rows)