Class TableViewRowListener.Adapter

  • All Implemented Interfaces:
    TableViewRowListener
    Enclosing interface:
    TableViewRowListener

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

      • Adapter

        public Adapter()
        Deprecated.
    • Method Detail

      • rowInserted

        public void rowInserted​(TableView tableView,
                                int index)
        Deprecated.
        Description copied from interface: TableViewRowListener
        Called when a row has been inserted into the table view.
        Specified by:
        rowInserted in interface TableViewRowListener
        Parameters:
        tableView - The source of the event.
        index - The index of the row that was inserted.
      • rowsRemoved

        public void rowsRemoved​(TableView tableView,
                                int index,
                                int count)
        Deprecated.
        Description copied from interface: TableViewRowListener
        Called when rows have been removed from the table view.
        Specified by:
        rowsRemoved in interface TableViewRowListener
        Parameters:
        tableView - The source of the event.
        index - The first index affected by the event.
        count - The number of rows that were removed, or -1 if all rows were removed.
      • rowUpdated

        public void rowUpdated​(TableView tableView,
                               int index)
        Deprecated.
        Description copied from interface: TableViewRowListener
        Called when an row in the table view has been updated.
        Specified by:
        rowUpdated in interface TableViewRowListener
        Parameters:
        tableView - The source of the event.
        index - The first index affected by the event.
      • rowsCleared

        public void rowsCleared​(TableView tableView)
        Deprecated.
        Description copied from interface: TableViewRowListener
        Called when the rows in a table view have been cleared.
        Specified by:
        rowsCleared in interface TableViewRowListener
        Parameters:
        tableView - The source of the event.