Class GridPaneListener.Adapter

  • All Implemented Interfaces:
    GridPaneListener
    Enclosing interface:
    GridPaneListener

    @Deprecated
    public static class GridPaneListener.Adapter
    extends java.lang.Object
    implements GridPaneListener
    Deprecated.
    Since 2.1 and Java 8 the interface itself has default implementations.
    Grid pane listener adapter.
    • Constructor Detail

      • Adapter

        public Adapter()
        Deprecated.
    • Method Detail

      • columnCountChanged

        public void columnCountChanged​(GridPane gridPane,
                                       int previousColumnCount)
        Deprecated.
        Description copied from interface: GridPaneListener
        Called when a grid pane's column count has changed.
        Specified by:
        columnCountChanged in interface GridPaneListener
        Parameters:
        gridPane - The grid pane that has changed.
        previousColumnCount - The previous column count for the grid.
      • rowInserted

        public void rowInserted​(GridPane gridPane,
                                int index)
        Deprecated.
        Description copied from interface: GridPaneListener
        Called when a row has been inserted into a grid pane.
        Specified by:
        rowInserted in interface GridPaneListener
        Parameters:
        gridPane - The grid pane that has changed.
        index - The index of the row that was just inserted.
      • rowsRemoved

        public void rowsRemoved​(GridPane gridPane,
                                int index,
                                Sequence<GridPane.Row> rows)
        Deprecated.
        Description copied from interface: GridPaneListener
        Called when rows have been removed from a grid pane.
        Specified by:
        rowsRemoved in interface GridPaneListener
        Parameters:
        gridPane - The grid pane that has changed.
        index - The starting index of the row(s) that were removed.
        rows - The complete sequence of removed rows.
      • cellInserted

        public void cellInserted​(GridPane.Row row,
                                 int column)
        Deprecated.
        Description copied from interface: GridPaneListener
        Called when a cell has been inserted into a grid pane.
        Specified by:
        cellInserted in interface GridPaneListener
        Parameters:
        row - The parent row of the cell that was inserted.
        column - The column index of the inserted cell.
      • cellsRemoved

        public void cellsRemoved​(GridPane.Row row,
                                 int column,
                                 Sequence<Component> removed)
        Deprecated.
        Description copied from interface: GridPaneListener
        Called when cells have been removed from a grid pane.
        Specified by:
        cellsRemoved in interface GridPaneListener
        Parameters:
        row - The parent row of the removed cell(s).
        column - The starting column index of the removed cells.
        removed - The complete sequence of removed cells.
      • cellUpdated

        public void cellUpdated​(GridPane.Row row,
                                int column,
                                Component previousComponent)
        Deprecated.
        Description copied from interface: GridPaneListener
        Called when a cell has been updated in a grid pane.
        Specified by:
        cellUpdated in interface GridPaneListener
        Parameters:
        row - The parent row object of the updated cell.
        column - The column index of the updated cell.
        previousComponent - The previous contents of this cell.