Class TableViewListener.Adapter

  • All Implemented Interfaces:
    TableViewListener
    Enclosing interface:
    TableViewListener

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

      • Adapter

        public Adapter()
        Deprecated.
    • Method Detail

      • tableDataChanged

        public void tableDataChanged​(TableView tableView,
                                     List<?> previousTableData)
        Deprecated.
        Description copied from interface: TableViewListener
        Called when a table view's table data has changed.
        Specified by:
        tableDataChanged in interface TableViewListener
        Parameters:
        tableView - The source of this event.
        previousTableData - The previous data list for this table view.
      • columnSourceChanged

        public void columnSourceChanged​(TableView tableView,
                                        TableView previousColumnSource)
        Deprecated.
        Description copied from interface: TableViewListener
        Called when a table view's column source has changed.
        Specified by:
        columnSourceChanged in interface TableViewListener
        Parameters:
        tableView - The source of this event.
        previousColumnSource - The previous column source for this table.
      • rowEditorChanged

        public void rowEditorChanged​(TableView tableView,
                                     TableView.RowEditor previousRowEditor)
        Deprecated.
        Description copied from interface: TableViewListener
        Called when a table view's row editor has changed.
        Specified by:
        rowEditorChanged in interface TableViewListener
        Parameters:
        tableView - The source of this event.
        previousRowEditor - The row editor that was previously used.
      • selectModeChanged

        public void selectModeChanged​(TableView tableView,
                                      TableView.SelectMode previousSelectMode)
        Deprecated.
        Description copied from interface: TableViewListener
        Called when a table view's select mode has changed.
        Specified by:
        selectModeChanged in interface TableViewListener
        Parameters:
        tableView - The source of the event.
        previousSelectMode - What the select mode used to be.
      • disabledRowFilterChanged

        public void disabledRowFilterChanged​(TableView tableView,
                                             Filter<?> previousDisabledRowFilter)
        Deprecated.
        Description copied from interface: TableViewListener
        Called when a table view's disabled row filter has changed.
        Specified by:
        disabledRowFilterChanged in interface TableViewListener
        Parameters:
        tableView - The table view in question.
        previousDisabledRowFilter - What the previous filter for disabled rows was.