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 SummaryConstructorsConstructorDescriptionTableColumnViewerLabelProvider(IBaseLabelProvider labelProvider) Create a new instance of the receiver.
- 
Method SummaryModifier 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.voidsetProviders(Object provider) Set the any providers for the receiver that can be adapted from provider.voidupdate(ViewerCell cell) Update the label for cell.Methods inherited from class org.eclipse.jface.viewers.ColumnLabelProvidercreateImageProvider, createTextImageProvider, createTextProviderMethods inherited from class org.eclipse.jface.viewers.CellLabelProviderdispose, getToolTipBackgroundColor, getToolTipDisplayDelayTime, getToolTipFont, getToolTipForegroundColor, getToolTipImage, getToolTipShift, getToolTipStyle, getToolTipText, getToolTipTimeDisplayed, initialize, useNativeToolTipMethods inherited from class org.eclipse.jface.viewers.BaseLabelProvideraddListener, dispose, fireLabelProviderChanged, isLabelProperty, removeListenerMethods inherited from class org.eclipse.core.commands.common.EventManageraddListenerObject, clearListeners, getListeners, isListenerAttached, removeListenerObjectMethods inherited from class java.lang.Objectclone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, waitMethods inherited from interface org.eclipse.jface.viewers.IBaseLabelProvideraddListener, dispose, isLabelProperty, removeListener
- 
Constructor Details- 
TableColumnViewerLabelProviderCreate a new instance of the receiver.- Parameters:
- labelProvider- instance of a table based label provider
- See Also:
 
 
- 
- 
Method Details- 
updateDescription copied from class:CellLabelProviderUpdate the label for cell.- Parameters:
- cell-- ViewerCell
 
- 
setProvidersSet the any providers for the receiver that can be adapted from provider.- Parameters:
- provider-- Object
 
- 
getFontDescription copied from interface:IFontProviderProvides a font for the given element.- Specified by:
- getFontin interface- IFontProvider
- Overrides:
- getFontin class- ColumnLabelProvider
- Parameters:
- element- the element
- Returns:
- the font for the element, or nullto use the default font
 
- 
getBackgroundDescription copied from interface:IColorProviderProvides a background color for the given element.- Specified by:
- getBackgroundin interface- IColorProvider
- Overrides:
- getBackgroundin class- ColumnLabelProvider
- Parameters:
- element- the element
- Returns:
- the background color for the element, or nullto use the default background color
 
- 
getTextDescription copied from interface:ILabelProviderReturns the text for the label of the given element.- Specified by:
- getTextin interface- ILabelProvider
- Overrides:
- getTextin class- ColumnLabelProvider
- 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
 
- 
getImageDescription 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 interface- ILabelProvider
- Overrides:
- getImagein class- ColumnLabelProvider
- 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
 
- 
getForegroundDescription copied from interface:IColorProviderProvides a foreground color for the given element.- Specified by:
- getForegroundin interface- IColorProvider
- Overrides:
- getForegroundin class- ColumnLabelProvider
- Parameters:
- element- the element
- Returns:
- the foreground color for the element, or nullto use the default foreground color
 
 
-