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 interfaceINullSelectionListenerInterface for listening tonullselection changes.Methods in org.eclipse.ui that return ISelectionListener Modifier and Type Method Description static 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 ISelectionListener Modifier and Type Method Description voidISelectionService. 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.views.properties
Subinterfaces of ISelectionListener in org.eclipse.ui.views.properties Modifier and Type Interface Description interfaceIPropertySheetPageInterface 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 classPropertySheetMain class for the Property Sheet View.classPropertySheetPageThe 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 classTabbedPropertySheetPageA property sheet page that provides a tabbed UI.
-