Class AddFromHistoryDialog

All Implemented Interfaces:
IShellProvider

public class AddFromHistoryDialog extends ResizableDialog
  • Constructor Details

  • Method Details

    • select

      public boolean select(IContainer root, IFile[] inputFiles)
    • createDialogArea

      protected Control createDialogArea(Composite parent2)
      Description copied from class: Dialog
      Creates and returns the contents of the upper part of this dialog (above the button bar).

      The Dialog implementation of this framework method creates and returns a new Composite with standard margins and spacing.

      The returned control's layout data must be an instance of GridData. This method must not modify the parent's layout.

      Subclasses must override this method but may call super as in the following example:

       Composite composite = (Composite) super.createDialogArea(parent);
       //add controls to composite as necessary
       return composite;
       
      Overrides:
      createDialogArea in class Dialog
      Parameters:
      parent2 - the parent composite to contain the dialog area
      Returns:
      the dialog area control
    • getEditionLabel

      protected String getEditionLabel(org.eclipse.compare.internal.AddFromHistoryDialog.HistoryInput input)
    • createButtonsForButtonBar

      protected void createButtonsForButtonBar(Composite parent)
      Description copied from class: Dialog
      Adds buttons to this dialog's button bar.

      The Dialog implementation of this framework method adds standard ok and cancel buttons using the createButton framework method. These standard buttons will be accessible from getCancelButton, and getOKButton. Subclasses may override.

      Note: The common button order is: {other buttons}, OK, Cancel. On some platforms, Dialog.initializeBounds() will move the default button to the right.

      Overrides:
      createButtonsForButtonBar in class Dialog
      Parameters:
      parent - the button bar composite