Package org.eclipse.jface.viewers
Class TableColumnViewerLabelProvider
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
- All Implemented Interfaces:
IBaseLabelProvider
,IColorProvider
,IFontProvider
,ILabelProvider
,IToolTipProvider
- Direct Known Subclasses:
TreeColumnViewerLabelProvider
TableColumnViewerLabelProvider is the mapping from the table based providers
to the ViewerLabelProvider.
- Since:
- 3.33
- See Also:
-
Constructor Summary
ConstructorDescriptionTableColumnViewerLabelProvider
(IBaseLabelProvider labelProvider) Create a new instance of the receiver. -
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.void
setProviders
(Object provider) Set the any providers for the receiver that can be adapted from provider.void
update
(ViewerCell cell) Update the label for cell.Methods inherited from class org.eclipse.jface.viewers.ColumnLabelProvider
createImageProvider, createTextImageProvider, createTextProvider
Methods inherited from class org.eclipse.jface.viewers.CellLabelProvider
dispose, getToolTipBackgroundColor, getToolTipDisplayDelayTime, getToolTipFont, getToolTipForegroundColor, getToolTipImage, getToolTipShift, getToolTipStyle, getToolTipText, getToolTipTimeDisplayed, initialize, useNativeToolTip
Methods inherited from class org.eclipse.jface.viewers.BaseLabelProvider
addListener, dispose, fireLabelProviderChanged, isLabelProperty, removeListener
Methods inherited from class org.eclipse.core.commands.common.EventManager
addListenerObject, clearListeners, getListeners, isListenerAttached, removeListenerObject
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
Methods inherited from interface org.eclipse.jface.viewers.IBaseLabelProvider
addListener, dispose, isLabelProperty, removeListener
-
Constructor Details
-
TableColumnViewerLabelProvider
Create a new instance of the receiver.- Parameters:
labelProvider
- instance of a table based label provider- See Also:
-
-
Method Details
-
update
Description copied from class:CellLabelProvider
Update the label for cell.- Parameters:
cell
-ViewerCell
-
setProviders
Set the any providers for the receiver that can be adapted from provider.- Parameters:
provider
-Object
-
getFont
Description copied from interface:IFontProvider
Provides a font for the given element.- Specified by:
getFont
in interfaceIFontProvider
- Overrides:
getFont
in classColumnLabelProvider
- Parameters:
element
- the element- Returns:
- the font for the element, or
null
to use the default font
-
getBackground
Description copied from interface:IColorProvider
Provides a background color for the given element.- Specified by:
getBackground
in interfaceIColorProvider
- Overrides:
getBackground
in classColumnLabelProvider
- Parameters:
element
- the element- Returns:
- the background color for the element, or
null
to use the default background color
-
getText
Description copied from interface:ILabelProvider
Returns the text for the label of the given element.- Specified by:
getText
in interfaceILabelProvider
- Overrides:
getText
in classColumnLabelProvider
- Parameters:
element
- the element for which to provide the label text- Returns:
- the text string used to label the element, or
null
if there is no text label for the given object
-
getImage
Description copied from interface:ILabelProvider
Returns 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:
getImage
in interfaceILabelProvider
- Overrides:
getImage
in classColumnLabelProvider
- Parameters:
element
- the element for which to provide the label image- Returns:
- the image used to label the element, or
null
if there is no image for the given object
-
getForeground
Description copied from interface:IColorProvider
Provides a foreground color for the given element.- Specified by:
getForeground
in interfaceIColorProvider
- Overrides:
getForeground
in classColumnLabelProvider
- Parameters:
element
- the element- Returns:
- the foreground color for the element, or
null
to use the default foreground color
-