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 TypeInterfaceDescriptioninterface
Interface for listening tonull
selection changes.Methods in org.eclipse.ui that return ISelectionListenerModifier and TypeMethodDescriptionstatic ISelectionListener
SelectionListenerFactory.createListener
(IWorkbenchPart part, Predicate<SelectionListenerFactory.ISelectionModel> predicate) Create a listener for a part that also acts as the selection listener.static ISelectionListener
SelectionListenerFactory.createListener
(IWorkbenchPart part, ISelectionListener listener, Predicate<SelectionListenerFactory.ISelectionModel> predicate) Create a listener for a part with a separate selection listener.static ISelectionListener
SelectionListenerFactory.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 ISelectionListener
SelectionListenerFactory.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 ISelectionListener
SelectionListenerFactory.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 ISelectionListener
SelectionListenerFactory.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 ISelectionListener
SelectionListenerFactory.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 TypeMethodDescriptionvoid
ISelectionService.addPostSelectionListener
(String partId, ISelectionListener listener) Adds a part-specific selection listener which is notified when selection changes in the part with the given id.void
ISelectionService.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.void
ISelectionService.addSelectionListener
(String partId, ISelectionListener listener) Adds a part-specific selection listener which is notified when selection changes in the part with the given id.void
ISelectionService.addSelectionListener
(ISelectionListener listener) Adds the given selection listener.static ISelectionListener
SelectionListenerFactory.createListener
(IWorkbenchPart part, ISelectionListener listener, Predicate<SelectionListenerFactory.ISelectionModel> predicate) Create a listener for a part with a separate selection listener.static ISelectionListener
SelectionListenerFactory.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 ISelectionListener
SelectionListenerFactory.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 ISelectionListener
SelectionListenerFactory.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 ISelectionListener
SelectionListenerFactory.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 ISelectionListener
SelectionListenerFactory.decorate
(ISelectionListener listener, Predicate<SelectionListenerFactory.ISelectionModel> additionalPredicate) Decorates the passed listener with the passed predicate.void
ISelectionService.removePostSelectionListener
(String partId, ISelectionListener listener) Removes the given part-specific post selection listener.void
ISelectionService.removePostSelectionListener
(ISelectionListener listener) Removes the given post selection listener.void
ISelectionService.removeSelectionListener
(String partId, ISelectionListener listener) Removes the given part-specific selection listener.void
ISelectionService.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 class
Extends PartPluginAction for usage in editor parts.class
An object action extension in a popup menu.class
This class adds to the PluginAction support by setting itself up for work within a WorkbenchPart.class
An intermediate selection listener that filters selection change events based on one or more predicates and forwards it to the functional selection listener.class
A PluginAction is a proxy for an action extension.final class
This class extends regular plugin action with the additional requirement that the delegate has to implement interface IViewActionDeelgate.class
This class extends regular plugin action with the additional requirement that the delegate has to implement interfaceIWorkbenchWindowActionDelegate
.class
A workbench window pulldown action.Methods in org.eclipse.ui.internal with parameters of type ISelectionListenerModifier and TypeMethodDescriptionvoid
SlaveSelectionService.addPostSelectionListener
(String partId, ISelectionListener listener) void
SlaveSelectionService.addPostSelectionListener
(ISelectionListener listener) void
WorkbenchPage.addPostSelectionListener
(String partId, ISelectionListener listener) void
WorkbenchPage.addPostSelectionListener
(ISelectionListener listener) void
SlaveSelectionService.addSelectionListener
(String partId, ISelectionListener listener) void
SlaveSelectionService.addSelectionListener
(ISelectionListener listener) void
WorkbenchPage.addSelectionListener
(String partId, ISelectionListener listener) void
WorkbenchPage.addSelectionListener
(ISelectionListener listener) void
SlaveSelectionService.removePostSelectionListener
(String partId, ISelectionListener listener) void
SlaveSelectionService.removePostSelectionListener
(ISelectionListener listener) void
WorkbenchPage.removePostSelectionListener
(String partId, ISelectionListener listener) void
WorkbenchPage.removePostSelectionListener
(ISelectionListener listener) void
SlaveSelectionService.removeSelectionListener
(String partId, ISelectionListener listener) void
SlaveSelectionService.removeSelectionListener
(ISelectionListener listener) void
WorkbenchPage.removeSelectionListener
(String partId, ISelectionListener listener) void
WorkbenchPage.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 TypeInterfaceDescriptioninterface
Interface for a property sheet page that appears in a property sheet view.Classes in org.eclipse.ui.views.properties that implement ISelectionListenerModifier and TypeClassDescriptionclass
Main class for the Property Sheet View.class
The 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 TypeClassDescriptionclass
A property sheet page that provides a tabbed UI.