Interface TableSizeControl.ITableSizeChangeListener

  • All Known Implementing Classes:
    InsertTableDialog
    Enclosing class:
    TableSizeControl

    public static interface TableSizeControl.ITableSizeChangeListener
    Classes which implement this interface provide a method that deals with the events that are generated as the table size changed. After creating an instance of a class that implements this interface it can be added to a control using the addTableSizeChangeListener method and removed using the removeTableSizeChangeListener method. As the table size changed, the tableSizeChanged method will be invoked.
    • Method Detail

      • tableSizeChanged

        void tableSizeChanged​(int newColCount,
                              int newRowCount,
                              boolean force)
        Called when the table size changed.
        Parameters:
        newColCount - the changed column count in table
        newRowCount - the changed row count in table
        force - true changes must be apply immediately, false otherwise