Uses of Interface
org.eclipse.ui.ISelectionListener
-
Packages that use ISelectionListener Package Description org.eclipse.ui Application programming interfaces for interaction with and extension of the Eclipse Platform User Interface.org.eclipse.ui.views.properties Provides the standard Property Sheet view which displays custom properties of the active workbench part's current selection.org.eclipse.ui.views.properties.tabbed Provides the Tabbed Properties framework. -
-
Uses of ISelectionListener in org.eclipse.ui
Subinterfaces of ISelectionListener in org.eclipse.ui Modifier and Type Interface Description interface
INullSelectionListener
Interface for listening tonull
selection changes.Methods in org.eclipse.ui that return ISelectionListener Modifier and Type Method Description static 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 ISelectionListener Modifier and Type Method Description void
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.views.properties
Subinterfaces of ISelectionListener in org.eclipse.ui.views.properties Modifier and Type Interface Description interface
IPropertySheetPage
Interface for a property sheet page that appears in a property sheet view.Classes in org.eclipse.ui.views.properties that implement ISelectionListener Modifier and Type Class Description class
PropertySheet
Main class for the Property Sheet View.class
PropertySheetPage
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 ISelectionListener Modifier and Type Class Description class
TabbedPropertySheetPage
A property sheet page that provides a tabbed UI.
-