Package com.iizigo.navigator
Class LabelProvider
- All Implemented Interfaces:
IProviderFlagsChangeListener
,DelegatingStyledCellLabelProvider.IStyledLabelProvider
,IBaseLabelProvider
,ILabelProvider
,ITableColorProvider
,ITableLabelProvider
,IToolTipProvider
,ICommonLabelProvider
,IDescriptionProvider
,IMementoAware
public class LabelProvider extends StyledCellLabelProvider implements IProviderFlagsChangeListener, DelegatingStyledCellLabelProvider.IStyledLabelProvider, ICommonLabelProvider, ITableLabelProvider, ITableColorProvider
The IIZI general purpose label provider.
The label provider implementation is straight-forward. Its task is to produce a textual and graphical representation of every element. In addition, it implements the IDescriptionProvider interface to provide description in the status bar when an element is selected. Please note, that this class is not CNF-specific but is related to JFace ContentProvider and JFace LabelProvider, as usual for any Viewer.
- Author:
- Christopher Mindus
Field Summary
Fields inherited from class org.eclipse.jface.viewers.StyledCellLabelProvider
COLORS_ON_SELECTION, NO_FOCUS
Constructor Summary
Method Summary
Modifier and TypeMethodDescriptionvoid
dispose()
Disposes of the label provider.getBackground
(Object element, int columnIndex) Provides a background color for the given element at the specified indexgetColumnImage
(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.getDescription
(Object element) Provide a description for the status bar view, if available.int
getFlags()
Gets the flags.getForeground
(Object element, int columnIndex) Provides a foreground color for the given element.Returns the image for the label of the given element.static JavaElementLabelProvider
Gets the Java element label provider, allocates it if required.static JavaElementLabelProvider
Gets the Java element label provider for large images, allocates it if required.getStyledText
(Object element) Returns the styled text label for the given elementReturns the text for the label of the given element.void
init
(ICommonContentExtensionSite aConfig) Initialize the label provider with the given configuration.boolean
isLabelProperty
(Object element, String property) Returns whether the label would be affected by a change to the given property of the given element.void
onNewFlags
(int flags) Called when the flags changed.void
restoreState
(IMemento aMemento) void
void
setFlags
(int flags) Sets the flags.Methods inherited from class org.eclipse.jface.viewers.StyledCellLabelProvider
erase, getColumn, getViewer, initialize, isOwnerDrawEnabled, measure, paint, prepareStyleRange, setOwnerDrawEnabled, styleDecoratedString, update
Methods inherited from class org.eclipse.jface.viewers.OwnerDrawLabelProvider
dispose, initialize, setOwnerDrawEnabled, setUpOwnerDraw
Methods inherited from class org.eclipse.jface.viewers.CellLabelProvider
getToolTipBackgroundColor, getToolTipDisplayDelayTime, getToolTipFont, getToolTipForegroundColor, getToolTipImage, getToolTipShift, getToolTipStyle, getToolTipText, getToolTipTimeDisplayed, useNativeToolTip
Methods inherited from class org.eclipse.jface.viewers.BaseLabelProvider
addListener, fireLabelProviderChanged, 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, removeListener
Constructor Details
LabelProvider
public LabelProvider()Eclipse constructor.LabelProvider
public LabelProvider(int flags) Constructor.- Parameters:
flags
- The flags for the information.
Method Details
getJavaElementLabelProvider
Gets the Java element label provider, allocates it if required.getJavaElementLabelProvider_LargeImages
Gets the Java element label provider for large images, allocates it if required.onNewFlags
public void onNewFlags(int flags) Called when the flags changed.- Specified by:
onNewFlags
in interfaceIProviderFlagsChangeListener
- Parameters:
flags
- The flags from INavigatorPresentation.
setFlags
public void setFlags(int flags) Sets the flags.getFlags
public int getFlags()Gets the flags.restoreState
- Specified by:
restoreState
in interfaceIMementoAware
saveState
- Specified by:
saveState
in interfaceIMementoAware
dispose
public void dispose()Disposes of the label provider.- Specified by:
dispose
in interfaceIBaseLabelProvider
- Overrides:
dispose
in classStyledCellLabelProvider
isLabelProperty
Returns whether the label would be affected by a change to the given property of the given element. This can be used to optimize a non-structural viewer update. If the property mentioned in the update does not affect the label, then the viewer need not update the label.- Specified by:
isLabelProperty
in interfaceIBaseLabelProvider
- Overrides:
isLabelProperty
in classBaseLabelProvider
- Parameters:
element
- The element.property
- The property.- Returns:
true
if the label would be affected, andfalse
if it would be unaffected.
getImage
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 interfaceDelegatingStyledCellLabelProvider.IStyledLabelProvider
- Specified by:
getImage
in interfaceILabelProvider
- 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.
getText
Returns the text for the label of the given element.- Specified by:
getText
in interfaceILabelProvider
- 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.
getStyledText
Returns the styled text label for the given element- Specified by:
getStyledText
in interfaceDelegatingStyledCellLabelProvider.IStyledLabelProvider
- Parameters:
element
- The element to evaluate the styled string for.- Returns:
- The styled string.
getDescription
Provide a description for the status bar view, if available. A default string of the form "(x) items selected" will be used if this method choose to return null.The empty string ("") will be respected as a valid value if returned. Return null if the extension defers to the default method of supplying status bar descriptions.
- Specified by:
getDescription
in interfaceIDescriptionProvider
- Parameters:
element
- The element selected in the Navigator.- Returns:
- A description for the status bar view, or null if not available.
getColumnImage
Returns the label image for the given column of the given element.- Specified by:
getColumnImage
in interfaceITableLabelProvider
- Parameters:
element
- The object representing the entire row, ornull
indicating that no input object is set in the viewer.columnIndex
- The zero-based index of the column in which the label appears.- Returns:
- Image or
null
if there is no image for the given object at columnIndex.
getColumnText
Returns the label text for the given column of the given element.- Specified by:
getColumnText
in interfaceITableLabelProvider
- Parameters:
element
- The object representing the entire row, ornull
indicating that no input object is set in the viewer.columnIndex
- The zero-based index of the column in which the label appears.- Returns:
- String or or
null
if there is no text for the given object at columnIndex.
getForeground
Provides a foreground color for the given element.- Specified by:
getForeground
in interfaceITableColorProvider
- Parameters:
element
- The element.columnIndex
- The zero-based index of the column in which the color appears.- Returns:
- The foreground color for the element, or
null
to use the default foreground color.
getBackground
Provides a background color for the given element at the specified index- Specified by:
getBackground
in interfaceITableColorProvider
- Parameters:
element
- The element.columnIndex
- The zero-based index of the column in which the color appears- Returns:
- The background color for the element, or
null
to use the default background color.