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_FOCUSConstructor Summary
ConstructorsMethod Summary
Modifier and TypeMethodDescriptionvoiddispose()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.intgetFlags()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 JavaElementLabelProviderGets the Java element label provider, allocates it if required.static JavaElementLabelProviderGets 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.voidinit(ICommonContentExtensionSite aConfig) Initialize the label provider with the given configuration.booleanisLabelProperty(Object element, String property) Returns whether the label would be affected by a change to the given property of the given element.voidonNewFlags(int flags) Called when the flags changed.voidrestoreState(IMemento aMemento) voidvoidsetFlags(int flags) Sets the flags.Methods inherited from class org.eclipse.jface.viewers.StyledCellLabelProvider
erase, getColumn, getViewer, initialize, isOwnerDrawEnabled, measure, paint, prepareStyleRange, setOwnerDrawEnabled, styleDecoratedString, updateMethods inherited from class org.eclipse.jface.viewers.OwnerDrawLabelProvider
dispose, initialize, setOwnerDrawEnabled, setUpOwnerDrawMethods inherited from class org.eclipse.jface.viewers.CellLabelProvider
getToolTipBackgroundColor, getToolTipDisplayDelayTime, getToolTipFont, getToolTipForegroundColor, getToolTipImage, getToolTipShift, getToolTipStyle, getToolTipText, getToolTipTimeDisplayed, useNativeToolTipMethods inherited from class org.eclipse.jface.viewers.BaseLabelProvider
addListener, fireLabelProviderChanged, 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, 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:
onNewFlagsin 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:
restoreStatein interfaceIMementoAware
saveState
- Specified by:
saveStatein interfaceIMementoAware
dispose
public void dispose()Disposes of the label provider.- Specified by:
disposein interfaceIBaseLabelProvider- Overrides:
disposein 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:
isLabelPropertyin interfaceIBaseLabelProvider- Overrides:
isLabelPropertyin classBaseLabelProvider- Parameters:
element- The element.property- The property.- Returns:
trueif the label would be affected, andfalseif 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:
getImagein interfaceDelegatingStyledCellLabelProvider.IStyledLabelProvider- 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
Returns 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.
getStyledText
Returns the styled text label for the given element- Specified by:
getStyledTextin 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:
getDescriptionin 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:
getColumnImagein interfaceITableLabelProvider- Parameters:
element- The object representing the entire row, ornullindicating 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
nullif 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:
getColumnTextin interfaceITableLabelProvider- Parameters:
element- The object representing the entire row, ornullindicating 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
nullif there is no text for the given object at columnIndex.
getForeground
Provides a foreground color for the given element.- Specified by:
getForegroundin 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
nullto use the default foreground color.
getBackground
Provides a background color for the given element at the specified index- Specified by:
getBackgroundin 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
nullto use the default background color.