Class TableViewColumnListener.Adapter

    • Constructor Detail

      • Adapter

        public Adapter()
        Deprecated.
    • Method Detail

      • columnInserted

        public void columnInserted​(TableView tableView,
                                   int index)
        Deprecated.
        Description copied from interface: TableViewColumnListener
        Called when a column is inserted into a table view's column sequence.
        Specified by:
        columnInserted in interface TableViewColumnListener
        Parameters:
        tableView - The table view that has changed.
        index - Where the new column has been inserted.
      • columnsRemoved

        public void columnsRemoved​(TableView tableView,
                                   int index,
                                   Sequence<TableView.Column> columns)
        Deprecated.
        Description copied from interface: TableViewColumnListener
        Called when columns are removed from a table view's column sequence.
        Specified by:
        columnsRemoved in interface TableViewColumnListener
        Parameters:
        tableView - The table view that has changed.
        index - The starting location of the removed columns.
        columns - The actual sequence of columns that were removed.
      • columnHeaderDataChanged

        public void columnHeaderDataChanged​(TableView.Column column,
                                            java.lang.Object previousHeaderData)
        Deprecated.
        Description copied from interface: TableViewColumnListener
        Called when a column's header data has changed.
        Specified by:
        columnHeaderDataChanged in interface TableViewColumnListener
        Parameters:
        column - The column that changed.
        previousHeaderData - What the header data used to be.
      • columnWidthChanged

        public void columnWidthChanged​(TableView.Column column,
                                       int previousWidth,
                                       boolean previousRelative)
        Deprecated.
        Description copied from interface: TableViewColumnListener
        Called when a column's width has changed.
        Specified by:
        columnWidthChanged in interface TableViewColumnListener
        Parameters:
        column - The column that changed.
        previousWidth - The previous numeric value of the column width.
        previousRelative - Whether the previous width was relative or not.
      • columnWidthLimitsChanged

        public void columnWidthLimitsChanged​(TableView.Column column,
                                             int previousMinimumWidth,
                                             int previousMaximumWidth)
        Deprecated.
        Description copied from interface: TableViewColumnListener
        Called when a column's width limits have changed.
        Specified by:
        columnWidthLimitsChanged in interface TableViewColumnListener
        Parameters:
        column - The source of this event.
        previousMinimumWidth - The previous minimum column width.
        previousMaximumWidth - The previous maximum column width.
      • columnFilterChanged

        public void columnFilterChanged​(TableView.Column column,
                                        java.lang.Object previousFilter)
        Deprecated.
        Description copied from interface: TableViewColumnListener
        Called when a column's filter has changed.
        Specified by:
        columnFilterChanged in interface TableViewColumnListener
        Parameters:
        column - The source of this event.
        previousFilter - The previous filter value for this column.