org.apache.pivot.wtk
Class GridPaneListener.Adapter

java.lang.Object
  extended by org.apache.pivot.wtk.GridPaneListener.Adapter
All Implemented Interfaces:
GridPaneListener
Enclosing interface:
GridPaneListener

public static class GridPaneListener.Adapter
extends Object
implements GridPaneListener

Grid pane listener adapter.


Nested Class Summary
 
Nested classes/interfaces inherited from interface org.apache.pivot.wtk.GridPaneListener
GridPaneListener.Adapter
 
Constructor Summary
GridPaneListener.Adapter()
           
 
Method Summary
 void cellInserted(GridPane.Row row, int column)
          Called when a cell has been inserted into a grid pane.
 void cellsRemoved(GridPane.Row row, int column, Sequence<Component> removed)
          Called when cell's have been removed from a grid pane.
 void cellUpdated(GridPane.Row row, int column, Component previousComponent)
          Called when a cell has been updated in a grid pane.
 void columnCountChanged(GridPane gridPane, int previousColumnCount)
          Called when a grid pane's column count has changed.
 void rowInserted(GridPane gridPane, int index)
          Called when a row has been inserted into a grid pane.
 void rowsRemoved(GridPane gridPane, int index, Sequence<GridPane.Row> rows)
          Called when rows have been removed from a grid pane.
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

GridPaneListener.Adapter

public GridPaneListener.Adapter()
Method Detail

columnCountChanged

public void columnCountChanged(GridPane gridPane,
                               int previousColumnCount)
Description copied from interface: GridPaneListener
Called when a grid pane's column count has changed.

Specified by:
columnCountChanged in interface GridPaneListener

rowInserted

public void rowInserted(GridPane gridPane,
                        int index)
Description copied from interface: GridPaneListener
Called when a row has been inserted into a grid pane.

Specified by:
rowInserted in interface GridPaneListener

rowsRemoved

public void rowsRemoved(GridPane gridPane,
                        int index,
                        Sequence<GridPane.Row> rows)
Description copied from interface: GridPaneListener
Called when rows have been removed from a grid pane.

Specified by:
rowsRemoved in interface GridPaneListener

cellInserted

public void cellInserted(GridPane.Row row,
                         int column)
Description copied from interface: GridPaneListener
Called when a cell has been inserted into a grid pane.

Specified by:
cellInserted in interface GridPaneListener

cellsRemoved

public void cellsRemoved(GridPane.Row row,
                         int column,
                         Sequence<Component> removed)
Description copied from interface: GridPaneListener
Called when cell's have been removed from a grid pane.

Specified by:
cellsRemoved in interface GridPaneListener

cellUpdated

public void cellUpdated(GridPane.Row row,
                        int column,
                        Component previousComponent)
Description copied from interface: GridPaneListener
Called when a cell has been updated in a grid pane.

Specified by:
cellUpdated in interface GridPaneListener