Package org.eclipse.jface.viewers
Class TreeColumnViewerLabelProvider
java.lang.Object
org.eclipse.core.commands.common.EventManager
org.eclipse.jface.viewers.BaseLabelProvider
org.eclipse.jface.viewers.CellLabelProvider
org.eclipse.jface.viewers.ColumnLabelProvider
org.eclipse.jface.viewers.TableColumnViewerLabelProvider
org.eclipse.jface.viewers.TreeColumnViewerLabelProvider
- All Implemented Interfaces:
IBaseLabelProvider,IColorProvider,IFontProvider,ILabelProvider,IToolTipProvider
TreeViewerLabelProvider is the ViewerLabelProvider that handles TreePaths.
- Since:
- 3.3
-
Constructor Summary
ConstructorsConstructorDescriptionTreeColumnViewerLabelProvider(IBaseLabelProvider labelProvider) Create a new instance of the receiver with the supplied labelProvider. -
Method Summary
Modifier and TypeMethodDescriptiongetBackground(Object element) Provides a background color for the given element.Provides a font for the given element.getForeground(Object element) Provides a foreground color for the given element.Returns the image for the label of the given element.Returns the text for the label of the given element.Return the ITreePathLabelProvider for the receiver.voidsetProviders(Object provider) Set the any providers for the receiver that can be adapted from provider.voidupdateLabel(ViewerLabel label, TreePath elementPath) Update the label for the element with TreePath.Methods inherited from class org.eclipse.jface.viewers.TableColumnViewerLabelProvider
updateMethods inherited from class org.eclipse.jface.viewers.ColumnLabelProvider
createImageProvider, createTextImageProvider, createTextProviderMethods inherited from class org.eclipse.jface.viewers.CellLabelProvider
dispose, getToolTipBackgroundColor, getToolTipDisplayDelayTime, getToolTipFont, getToolTipForegroundColor, getToolTipImage, getToolTipShift, getToolTipStyle, getToolTipText, getToolTipTimeDisplayed, initialize, useNativeToolTipMethods inherited from class org.eclipse.jface.viewers.BaseLabelProvider
addListener, dispose, 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, dispose, isLabelProperty, removeListener
-
Constructor Details
-
TreeColumnViewerLabelProvider
Create a new instance of the receiver with the supplied labelProvider.- Parameters:
labelProvider- the label provider
-
-
Method Details
-
updateLabel
Update the label for the element with TreePath.- Parameters:
label- the label to updateelementPath- the path of the element being decorated
-
setProviders
Set the any providers for the receiver that can be adapted from provider.- Parameters:
provider-Object
-
getTreePathProvider
Return the ITreePathLabelProvider for the receiver.- Returns:
- Returns the treePathProvider.
-
getFont
Description copied from interface:IFontProviderProvides a font for the given element.- Specified by:
getFontin interfaceIFontProvider- Overrides:
getFontin classColumnLabelProvider- Parameters:
element- the element- Returns:
- the font for the element, or
nullto use the default font
-
getBackground
Description copied from interface:IColorProviderProvides a background color for the given element.- Specified by:
getBackgroundin interfaceIColorProvider- Overrides:
getBackgroundin classColumnLabelProvider- Parameters:
element- the element- Returns:
- the background color for the element, or
nullto use the default background color
-
getText
Description copied from interface:ILabelProviderReturns the text for the label of the given element.- Specified by:
getTextin interfaceILabelProvider- Overrides:
getTextin classColumnLabelProvider- 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
-
getImage
Description copied from interface:ILabelProviderReturns the image for the label of the given element. The image is owned by the label provider and must not be disposed directly. Instead, dispose the label provider when no longer needed.- Specified by:
getImagein interfaceILabelProvider- Overrides:
getImagein classColumnLabelProvider- 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
-
getForeground
Description copied from interface:IColorProviderProvides a foreground color for the given element.- Specified by:
getForegroundin interfaceIColorProvider- Overrides:
getForegroundin classColumnLabelProvider- Parameters:
element- the element- Returns:
- the foreground color for the element, or
nullto use the default foreground color
-