Class TableViewSortListener.Adapter

  • All Implemented Interfaces:
    TableViewSortListener
    Enclosing interface:
    TableViewSortListener

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

      • Adapter

        public Adapter()
        Deprecated.
    • Method Detail

      • sortAdded

        public void sortAdded​(TableView tableView,
                              java.lang.String columnName)
        Deprecated.
        Description copied from interface: TableViewSortListener
        Called when a sort has been added to a table view.
        Specified by:
        sortAdded in interface TableViewSortListener
        Parameters:
        tableView - The source of this event.
        columnName - The new column name added to the sort criteria.
      • sortUpdated

        public void sortUpdated​(TableView tableView,
                                java.lang.String columnName,
                                SortDirection previousSortDirection)
        Deprecated.
        Description copied from interface: TableViewSortListener
        Called when a sort has been updated in a table view.
        Specified by:
        sortUpdated in interface TableViewSortListener
        Parameters:
        tableView - The source of this event.
        columnName - The column that was updated.
        previousSortDirection - The previous value of the sort direction for this column.
      • sortRemoved

        public void sortRemoved​(TableView tableView,
                                java.lang.String columnName,
                                SortDirection sortDirection)
        Deprecated.
        Description copied from interface: TableViewSortListener
        Called when a sort has been removed from a table view.
        Specified by:
        sortRemoved in interface TableViewSortListener
        Parameters:
        tableView - The source of this event.
        columnName - The column name that was removed from the sort criteria.
        sortDirection - What the sort direction was for this column.