Package org.eclipse.jface.viewers
Class ColumnLabelProvider
java.lang.Object
org.eclipse.core.commands.common.EventManager
org.eclipse.jface.viewers.BaseLabelProvider
org.eclipse.jface.viewers.CellLabelProvider
org.eclipse.jface.viewers.ColumnLabelProvider
- All Implemented Interfaces:
IBaseLabelProvider,IColorProvider,IFontProvider,ILabelProvider,IToolTipProvider
- Direct Known Subclasses:
PropertyColumnLabelProvider,TableColumnViewerLabelProvider
public class ColumnLabelProvider
extends CellLabelProvider
implements IFontProvider, IColorProvider, ILabelProvider
The ColumnLabelProvider is the label provider for viewers
that have column support such as
TreeViewer and
TableViewer
This classes is intended to be subclassed
- Since:
- 3.3
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionstatic ColumnLabelProvidercreateImageProvider(Function<Object, Image> imageFunction) Creates aColumnLabelProviderwhich implements thegetImage(java.lang.Object)method by calling the argument function.static ColumnLabelProviderCreates aColumnLabelProviderwhich implements both thegetText(java.lang.Object)andgetImage(java.lang.Object)methods by calling the argument functions.static ColumnLabelProvidercreateTextProvider(Function<Object, String> textFunction) Creates aColumnLabelProviderwhich implements thegetText(java.lang.Object)method by calling the argument function.getBackground(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.voidupdate(ViewerCell cell) Update the label for cell.Methods 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
-
ColumnLabelProvider
public ColumnLabelProvider()
-
-
Method Details
-
update
Description copied from class:CellLabelProviderUpdate the label for cell.- Specified by:
updatein classCellLabelProvider- Parameters:
cell-ViewerCell
-
getFont
Description copied from interface:IFontProviderProvides a font for the given element.- Specified by:
getFontin interfaceIFontProvider- 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- Parameters:
element- the element- Returns:
- the background color for the element, or
nullto use the default background color
-
getForeground
Description copied from interface:IColorProviderProvides a foreground color for the given element.- Specified by:
getForegroundin interfaceIColorProvider- Parameters:
element- the element- Returns:
- the foreground color for the element, or
nullto use the default foreground color
-
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- 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
-
getText
Description copied from interface:ILabelProviderReturns the text for the label of the given element.- Specified by:
getTextin interfaceILabelProvider- 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
-
createTextProvider
Creates aColumnLabelProviderwhich implements thegetText(java.lang.Object)method by calling the argument function.- Parameters:
textFunction- the function which returns the text- Returns:
- The new ColumnLabelProvider
- Since:
- 3.19
-
createImageProvider
Creates aColumnLabelProviderwhich implements thegetImage(java.lang.Object)method by calling the argument function.- Parameters:
imageFunction- the function which returns the image- Returns:
- The new ColumnLabelProvider
- Since:
- 3.19
-
createTextImageProvider
public static ColumnLabelProvider createTextImageProvider(Function<Object, String> textFunction, Function<Object, Image> imageFunction) Creates aColumnLabelProviderwhich implements both thegetText(java.lang.Object)andgetImage(java.lang.Object)methods by calling the argument functions.- Parameters:
textFunction- the function which returns the textimageFunction- the function which returns the image- Returns:
- The new ColumnLabelProvider
- Since:
- 3.19
-