Class AddBookmarkAction

All Implemented Interfaces:
IAction, ISelectionChangedListener

public class AddBookmarkAction extends SelectionListenerAction
Standard action for adding a bookmark to the currently selected file resource(s).

This class may be instantiated; it is not intended to be subclassed.

Restriction:
This class is not intended to be subclassed by clients.
  • Field Details

  • Constructor Details

    • AddBookmarkAction

      @Deprecated public AddBookmarkAction(Shell shell)
      Creates a new bookmark action. By default, prompts the user for the bookmark name.
      Parameters:
      shell - the shell for any dialogs
    • AddBookmarkAction

      @Deprecated public AddBookmarkAction(Shell shell, boolean promptForName)
      Creates a new bookmark action.
      Parameters:
      shell - the shell for any dialogs
      promptForName - whether to ask the user for the bookmark name (IGNORED)
    • AddBookmarkAction

      public AddBookmarkAction(IShellProvider provider, boolean promptForName)
      Creates a new bookmark action.
      Parameters:
      provider - the shell provider for any dialogs. Must not be null
      promptForName - whether to ask the user for the bookmark name (IGNORED)
      Since:
      3.4
  • Method Details

    • run

      public void run()
      Description copied from class: Action
      The default implementation of this IAction method does nothing. Subclasses should override this method if they do not need information from the triggering event, or override runWithEvent(Event) if they do.
      Specified by:
      run in interface IAction
      Overrides:
      run in class Action
      See Also:
    • updateSelection

      protected boolean updateSelection(IStructuredSelection selection)
      The AddBookmarkAction implementation of this SelectionListenerAction method enables the action only if the selection is not empty and contains just file resources.
      Overrides:
      updateSelection in class BaseSelectionListenerAction
      Parameters:
      selection - the new selection
      Returns:
      true if the action should be enabled for this selection, and false otherwise