Class TableSelectionDialog<T>

java.lang.Object
docking.DialogComponentProvider
docking.widgets.dialogs.TableSelectionDialog<T>
Type Parameters:
T - The type of row object in the table.
All Implemented Interfaces:
ActionContextProvider, StatusListener, TaskListener

public class TableSelectionDialog<T> extends DialogComponentProvider
Dialog for displaying table data in a dialog for the purpose of the user selecting one or more items from the table.
  • Constructor Details

    • TableSelectionDialog

      public TableSelectionDialog(String title, RowObjectTableModel<T> model, boolean allowMultipleSelection)
      Create a new Dialog for displaying and choosing table row items
      Parameters:
      title - The title for the dialog
      model - a RowObjectTableModel that has the tRable data
      allowMultipleSelection - if true, the dialog allows the user to select more than one row; otherwise, only single selection is allowed
  • Method Details

    • getSelectionItems

      public List<T> getSelectionItems()
      Returns the list of selected items or null if the dialog was cancelled.
      Returns:
      the list of selected items or null if the dialog was cancelled.
    • processMouseClicked

      protected void processMouseClicked(MouseEvent e)
    • okCallback

      protected void okCallback()
      Description copied from class: DialogComponentProvider
      The callback method for when the "OK" button is pressed.
      Overrides:
      okCallback in class DialogComponentProvider
    • cancelCallback

      protected void cancelCallback()
      Description copied from class: DialogComponentProvider
      The callback method for when the "Cancel" button is pressed. The default behavior is to call setVisible(false) and dispose() on the dialog.
      Overrides:
      cancelCallback in class DialogComponentProvider
    • dialogShown

      protected void dialogShown()
      Description copied from class: DialogComponentProvider
      Override this method if you want to do something when the dialog is made visible
      Overrides:
      dialogShown in class DialogComponentProvider
    • updateOkEnabled

      protected void updateOkEnabled()