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 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.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.
-