Class NavigationEndDialog

All Implemented Interfaces:
IShellProvider

public class NavigationEndDialog extends MessageDialogWithToggle
  • Constructor Details

    • NavigationEndDialog

      public NavigationEndDialog(Shell parentShell, String dialogTitle, Image dialogTitleImage, String dialogMessage, String[][] labelsAndValues)
  • Method Details

    • createCustomArea

      protected Control createCustomArea(Composite parent)
      Description copied from class: MessageDialog
      Creates and returns the contents of an area of the dialog which appears below the message and above the button bar.

      The default implementation of this framework method returns null. Subclasses may override.

      Overrides:
      createCustomArea in class MessageDialog
      Parameters:
      parent - parent composite to contain the custom area
      Returns:
      the custom area control, or null
    • buttonPressed

      protected void buttonPressed(int buttonId)
      Description copied from class: Dialog
      Notifies that this dialog's button with the given id has been pressed.

      The Dialog implementation of this framework method calls okPressed if the ok button is the pressed, and cancelPressed if the cancel button is the pressed. All other button presses are ignored. Subclasses may override to handle other buttons, but should call super.buttonPressed if the default handling of the ok and cancel buttons is desired.

      Overrides:
      buttonPressed in class MessageDialogWithToggle
      Parameters:
      buttonId - the id of the button that was pressed (see IDialogConstants.*_ID constants)
      See Also: