Uses of Class
org.apache.pivot.wtk.TablePane
-
Packages that use TablePane Package Description org.apache.pivot.wtk Contains classes that define the structure and behavior of WTK user interface components.org.apache.pivot.wtk.content Contains classes representing component data, such as list items or table rows.org.apache.pivot.wtk.skin Contains common skins and abstract base classes for theme-specific skins. -
-
Uses of TablePane in org.apache.pivot.wtk
Methods in org.apache.pivot.wtk that return TablePane Modifier and Type Method Description TablePane
TablePane.Column. getTablePane()
Returns the table pane with which this column is associated.TablePane
TablePane.Row. getTablePane()
Returns the table pane with which this row is associated.Methods in org.apache.pivot.wtk with parameters of type TablePane Modifier and Type Method Description void
TablePaneListener.Adapter. columnInserted(TablePane tablePane, int index)
Deprecated.default void
TablePaneListener. columnInserted(TablePane tablePane, int index)
Called when a column has been inserted into a table pane.void
TablePaneListener.Listeners. columnInserted(TablePane tablePane, int index)
void
TablePaneAttributeListener.Adapter. columnSpanChanged(TablePane tablePane, Component component, int previousColumnSpan)
Deprecated.default void
TablePaneAttributeListener. columnSpanChanged(TablePane tablePane, Component component, int previousColumnSpan)
Called when a component's column span attribute has changed.void
TablePaneAttributeListener.Listeners. columnSpanChanged(TablePane tablePane, Component component, int previousColumnSpan)
void
TablePaneListener.Adapter. columnsRemoved(TablePane tablePane, int index, Sequence<TablePane.Column> columns)
Deprecated.default void
TablePaneListener. columnsRemoved(TablePane tablePane, int index, Sequence<TablePane.Column> columns)
Called when columns have been removed from a table pane.void
TablePaneListener.Listeners. columnsRemoved(TablePane tablePane, int index, Sequence<TablePane.Column> columns)
void
TablePaneListener.Adapter. rowInserted(TablePane tablePane, int index)
Deprecated.void
TablePaneListener.Listeners. rowInserted(TablePane tablePane, int index)
default void
TablePaneListener. rowInserted(TablePane tablePane, int index)
Called when a row has been inserted into a table pane.void
TablePaneAttributeListener.Adapter. rowSpanChanged(TablePane tablePane, Component component, int previousRowSpan)
Deprecated.void
TablePaneAttributeListener.Listeners. rowSpanChanged(TablePane tablePane, Component component, int previousRowSpan)
default void
TablePaneAttributeListener. rowSpanChanged(TablePane tablePane, Component component, int previousRowSpan)
Called when a component's row span attribute has changed.void
TablePaneListener.Adapter. rowsRemoved(TablePane tablePane, int index, Sequence<TablePane.Row> rows)
Deprecated.void
TablePaneListener.Listeners. rowsRemoved(TablePane tablePane, int index, Sequence<TablePane.Row> rows)
default void
TablePaneListener. rowsRemoved(TablePane tablePane, int index, Sequence<TablePane.Row> rows)
Called when rows have been removed from a table pane.Constructors in org.apache.pivot.wtk with parameters of type TablePane Constructor Description Column(TablePane tablePane)
Column(TablePane tablePane, int width)
Column(TablePane tablePane, int width, boolean relative)
Column(TablePane tablePane, int width, boolean relative, boolean highlighted)
Row(TablePane tablePane)
Row(TablePane tablePane, int height)
Row(TablePane tablePane, int height, boolean relative)
Row(TablePane tablePane, int height, boolean relative, boolean highlighted)
-
Uses of TablePane in org.apache.pivot.wtk.content
Subclasses of TablePane in org.apache.pivot.wtk.content Modifier and Type Class Description class
LinkButtonDataRenderer
Default link button data renderer.class
MenuItemDataRenderer
Default menu item data renderer. -
Uses of TablePane in org.apache.pivot.wtk.skin
Methods in org.apache.pivot.wtk.skin with parameters of type TablePane Modifier and Type Method Description 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)
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)
-