Package org.eclipse.ui.model
Class PerspectiveLabelProvider
java.lang.Object
org.eclipse.core.commands.common.EventManager
org.eclipse.jface.viewers.BaseLabelProvider
org.eclipse.jface.viewers.LabelProvider
org.eclipse.ui.model.PerspectiveLabelProvider
- All Implemented Interfaces:
IBaseLabelProvider,ILabelProvider,ITableLabelProvider
A table label provider implementation for showing workbench perspectives
(objects of type
IPerspectiveDescriptor) in table- and
tree-structured viewers.
Clients may instantiate this class. It is not intended to be subclassed.
- Since:
- 3.0
-
Constructor Summary
ConstructorsConstructorDescriptionCreates a new label provider for perspectives.PerspectiveLabelProvider(boolean markDefault) Creates a new label provider for perspectives. -
Method Summary
Modifier and TypeMethodDescriptionvoiddispose()TheBaseLabelProviderimplementation of thisIBaseLabelProvidermethod clears its internal listener list.getColumnImage(Object element, int columnIndex) Returns the label image for the given column of the given element.getColumnText(Object element, int columnIndex) Returns the label text for the given column of the given element.TheLabelProviderimplementation of thisILabelProvidermethod returnsnull.TheLabelProviderimplementation of thisILabelProvidermethod returns the element'stoStringstring.Methods inherited from class org.eclipse.jface.viewers.LabelProvider
createImageProvider, createTextImageProvider, createTextProviderMethods inherited from class org.eclipse.jface.viewers.BaseLabelProvider
addListener, fireLabelProviderChanged, isLabelProperty, removeListenerMethods inherited from class org.eclipse.core.commands.common.EventManager
addListenerObject, clearListeners, getListeners, isListenerAttached, removeListenerObjectMethods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, waitMethods inherited from interface org.eclipse.jface.viewers.IBaseLabelProvider
addListener, isLabelProperty, removeListener
-
Constructor Details
-
PerspectiveLabelProvider
public PerspectiveLabelProvider()Creates a new label provider for perspectives. The default perspective is visually marked. -
PerspectiveLabelProvider
public PerspectiveLabelProvider(boolean markDefault) Creates a new label provider for perspectives.- Parameters:
markDefault-trueif the default perspective is to be visually marked, andfalseif the default perspective is not treated as anything special
-
-
Method Details
-
getImage
Description copied from class:LabelProviderTheLabelProviderimplementation of thisILabelProvidermethod returnsnull. Subclasses may override.- Specified by:
getImagein interfaceILabelProvider- Overrides:
getImagein classLabelProvider- Parameters:
element- the element for which to provide the label image- Returns:
- the image used to label the element, or
nullif there is no image for the given object
-
dispose
public void dispose()Description copied from class:BaseLabelProviderTheBaseLabelProviderimplementation of thisIBaseLabelProvidermethod clears its internal listener list. Subclasses may extend but should call the super implementation.- Specified by:
disposein interfaceIBaseLabelProvider- Overrides:
disposein classBaseLabelProvider
-
getText
Description copied from class:LabelProviderTheLabelProviderimplementation of thisILabelProvidermethod returns the element'stoStringstring. Subclasses may override.- Specified by:
getTextin interfaceILabelProvider- Overrides:
getTextin classLabelProvider- Parameters:
element- the element for which to provide the label text- Returns:
- the text string used to label the element, or
nullif there is no text label for the given object
-
getColumnImage
Description copied from interface:ITableLabelProviderReturns the label image for the given column of the given element.- Specified by:
getColumnImagein interfaceITableLabelProvider- Parameters:
element- the object representing the entire row, ornullindicating that no input object is set in the viewercolumnIndex- the zero-based index of the column in which the label appears- Returns:
- Image or
nullif there is no image for the given object at columnIndex - See Also:
-
getColumnText
Description copied from interface:ITableLabelProviderReturns the label text for the given column of the given element.- Specified by:
getColumnTextin interfaceITableLabelProvider- Parameters:
element- the object representing the entire row, ornullindicating that no input object is set in the viewercolumnIndex- the zero-based index of the column in which the label appears- Returns:
- String or or
nullif there is no text for the given object at columnIndex - See Also:
-