Uses of Interface
org.eclipse.ui.ISelectionListener
Packages that use ISelectionListener
Package
Description
Application programming interfaces for interaction
with and extension of the Eclipse Platform User Interface.
Provides the standard Property Sheet view which displays
custom properties of the active workbench part's current selection.
Provides the Tabbed Properties framework.
-
Uses of ISelectionListener in org.eclipse.ui
Subinterfaces of ISelectionListener in org.eclipse.uiModifier and TypeInterfaceDescriptioninterfaceInterface for listening tonullselection changes.Methods in org.eclipse.ui that return ISelectionListenerModifier and TypeMethodDescriptionstatic ISelectionListenerSelectionListenerFactory.createListener(IWorkbenchPart part, Predicate<SelectionListenerFactory.ISelectionModel> predicate) Create a listener for a part that also acts as the selection listener.static ISelectionListenerSelectionListenerFactory.createListener(IWorkbenchPart part, ISelectionListener listener, Predicate<SelectionListenerFactory.ISelectionModel> predicate) Create a listener for a part with a separate selection listener.static ISelectionListenerSelectionListenerFactory.createVisibleListener(IWorkbenchPart part, ISelectionListener listener) Convenience method to create a listener that only gets notified when: the selection has changed; the part is visible.static ISelectionListenerSelectionListenerFactory.createVisibleListener(IWorkbenchPart part, ISelectionListener listener, Predicate<SelectionListenerFactory.ISelectionModel> additionalPredicate) Convenience method to create a listener that only gets notified when: the selection has changed; the part is visible.static ISelectionListenerSelectionListenerFactory.createVisibleSelfMutedListener(IWorkbenchPart part, ISelectionListener listener) Provides a listener that only gets notified of selection events when: the selection was not already delivered from any part; the part is visible; the selection does not originate from the part.static ISelectionListenerSelectionListenerFactory.createVisibleSelfMutedListener(IWorkbenchPart part, ISelectionListener listener, Predicate<SelectionListenerFactory.ISelectionModel> additionalPredicate) Provides a listener that only gets notified of selection events when: the selection has changed; the part is visible; the selection does not originate from the part.static ISelectionListenerSelectionListenerFactory.decorate(ISelectionListener listener, Predicate<SelectionListenerFactory.ISelectionModel> additionalPredicate) Decorates the passed listener with the passed predicate.Methods in org.eclipse.ui with parameters of type ISelectionListenerModifier and TypeMethodDescriptionvoidISelectionService.addPostSelectionListener(String partId, ISelectionListener listener) Adds a part-specific selection listener which is notified when selection changes in the part with the given id.voidISelectionService.addPostSelectionListener(ISelectionListener listener) Adds the given post selection listener.It is equivalent to selection changed if the selection was triggered by the mouse but it has a delay if the selection is triggered by the keyboard arrows.voidISelectionService.addSelectionListener(String partId, ISelectionListener listener) Adds a part-specific selection listener which is notified when selection changes in the part with the given id.voidISelectionService.addSelectionListener(ISelectionListener listener) Adds the given selection listener.static ISelectionListenerSelectionListenerFactory.createListener(IWorkbenchPart part, ISelectionListener listener, Predicate<SelectionListenerFactory.ISelectionModel> predicate) Create a listener for a part with a separate selection listener.static ISelectionListenerSelectionListenerFactory.createVisibleListener(IWorkbenchPart part, ISelectionListener listener) Convenience method to create a listener that only gets notified when: the selection has changed; the part is visible.static ISelectionListenerSelectionListenerFactory.createVisibleListener(IWorkbenchPart part, ISelectionListener listener, Predicate<SelectionListenerFactory.ISelectionModel> additionalPredicate) Convenience method to create a listener that only gets notified when: the selection has changed; the part is visible.static ISelectionListenerSelectionListenerFactory.createVisibleSelfMutedListener(IWorkbenchPart part, ISelectionListener listener) Provides a listener that only gets notified of selection events when: the selection was not already delivered from any part; the part is visible; the selection does not originate from the part.static ISelectionListenerSelectionListenerFactory.createVisibleSelfMutedListener(IWorkbenchPart part, ISelectionListener listener, Predicate<SelectionListenerFactory.ISelectionModel> additionalPredicate) Provides a listener that only gets notified of selection events when: the selection has changed; the part is visible; the selection does not originate from the part.static ISelectionListenerSelectionListenerFactory.decorate(ISelectionListener listener, Predicate<SelectionListenerFactory.ISelectionModel> additionalPredicate) Decorates the passed listener with the passed predicate.voidISelectionService.removePostSelectionListener(String partId, ISelectionListener listener) Removes the given part-specific post selection listener.voidISelectionService.removePostSelectionListener(ISelectionListener listener) Removes the given post selection listener.voidISelectionService.removeSelectionListener(String partId, ISelectionListener listener) Removes the given part-specific selection listener.voidISelectionService.removeSelectionListener(ISelectionListener listener) Removes the given selection listener. -
Uses of ISelectionListener in org.eclipse.ui.internal
Classes in org.eclipse.ui.internal that implement ISelectionListenerModifier and TypeClassDescriptionfinal classExtends PartPluginAction for usage in editor parts.classAn object action extension in a popup menu.classThis class adds to the PluginAction support by setting itself up for work within a WorkbenchPart.classAn intermediate selection listener that filters selection change events based on one or more predicates and forwards it to the functional selection listener.classA PluginAction is a proxy for an action extension.final classThis class extends regular plugin action with the additional requirement that the delegate has to implement interface IViewActionDeelgate.classThis class extends regular plugin action with the additional requirement that the delegate has to implement interfaceIWorkbenchWindowActionDelegate.classA workbench window pulldown action.Methods in org.eclipse.ui.internal with parameters of type ISelectionListenerModifier and TypeMethodDescriptionvoidSlaveSelectionService.addPostSelectionListener(String partId, ISelectionListener listener) voidSlaveSelectionService.addPostSelectionListener(ISelectionListener listener) voidWorkbenchPage.addPostSelectionListener(String partId, ISelectionListener listener) voidWorkbenchPage.addPostSelectionListener(ISelectionListener listener) voidSlaveSelectionService.addSelectionListener(String partId, ISelectionListener listener) voidSlaveSelectionService.addSelectionListener(ISelectionListener listener) voidWorkbenchPage.addSelectionListener(String partId, ISelectionListener listener) voidWorkbenchPage.addSelectionListener(ISelectionListener listener) voidSlaveSelectionService.removePostSelectionListener(String partId, ISelectionListener listener) voidSlaveSelectionService.removePostSelectionListener(ISelectionListener listener) voidWorkbenchPage.removePostSelectionListener(String partId, ISelectionListener listener) voidWorkbenchPage.removePostSelectionListener(ISelectionListener listener) voidSlaveSelectionService.removeSelectionListener(String partId, ISelectionListener listener) voidSlaveSelectionService.removeSelectionListener(ISelectionListener listener) voidWorkbenchPage.removeSelectionListener(String partId, ISelectionListener listener) voidWorkbenchPage.removeSelectionListener(ISelectionListener listener) Constructors in org.eclipse.ui.internal with parameters of type ISelectionListenerModifierConstructorDescriptionPartSelectionListener(IWorkbenchPart part, ISelectionListener callbackListener, Predicate<SelectionListenerFactory.ISelectionModel> predicate) Constructs the intermediate selection listener to filter selections before they are passed on the the callback listener. -
Uses of ISelectionListener in org.eclipse.ui.views.properties
Subinterfaces of ISelectionListener in org.eclipse.ui.views.propertiesModifier and TypeInterfaceDescriptioninterfaceInterface for a property sheet page that appears in a property sheet view.Classes in org.eclipse.ui.views.properties that implement ISelectionListenerModifier and TypeClassDescriptionclassMain class for the Property Sheet View.classThe standard implementation of property sheet page which presents a table of property names and values obtained from the current selection in the active workbench part. -
Uses of ISelectionListener in org.eclipse.ui.views.properties.tabbed
Classes in org.eclipse.ui.views.properties.tabbed that implement ISelectionListenerModifier and TypeClassDescriptionclassA property sheet page that provides a tabbed UI.