Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'org.eclipse.debug.ui/ui/org/eclipse/debug/internal/ui/viewers/model/ITreeModelLabelProvider.java')
-rw-r--r--org.eclipse.debug.ui/ui/org/eclipse/debug/internal/ui/viewers/model/ITreeModelLabelProvider.java26
1 files changed, 13 insertions, 13 deletions
diff --git a/org.eclipse.debug.ui/ui/org/eclipse/debug/internal/ui/viewers/model/ITreeModelLabelProvider.java b/org.eclipse.debug.ui/ui/org/eclipse/debug/internal/ui/viewers/model/ITreeModelLabelProvider.java
index fe57a3bd1..190a0a8f7 100644
--- a/org.eclipse.debug.ui/ui/org/eclipse/debug/internal/ui/viewers/model/ITreeModelLabelProvider.java
+++ b/org.eclipse.debug.ui/ui/org/eclipse/debug/internal/ui/viewers/model/ITreeModelLabelProvider.java
@@ -4,7 +4,7 @@
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v10.html
- *
+ *
* Contributors:
* Wind River Systems - initial API and implementation
*******************************************************************************/
@@ -20,10 +20,10 @@ import org.eclipse.swt.graphics.Image;
import org.eclipse.swt.graphics.RGB;
/**
- * {@link InternalTreeModelViewer} label provider interface. In addition to
+ * {@link InternalTreeModelViewer} label provider interface. In addition to
* implementing this interface, the label provider for the TreeModelViewer
- * must also extend CellLabelProvider.
- *
+ * must also extend CellLabelProvider.
+ *
* @since 3.5
*/
public interface ITreeModelLabelProvider extends IBaseLabelProvider {
@@ -31,17 +31,17 @@ public interface ITreeModelLabelProvider extends IBaseLabelProvider {
/**
* Requests an label update label of the given element.
* @param elementPath Element to update.
- * @return true if element label provider is found and update will
+ * @return true if element label provider is found and update will
* be requested.
*/
public boolean update(TreePath elementPath);
-
+
/**
* Registers the specified listener for view label update notifications.
* @param listener Listener to add
*/
public void addLabelUpdateListener(ILabelUpdateListener listener);
-
+
/**
* Removes the specified listener from view label update notifications.
* @param listener Listener to remove
@@ -51,25 +51,25 @@ public interface ITreeModelLabelProvider extends IBaseLabelProvider {
/**
* Returns an image for the given image descriptor or <code>null</code>. Adds the image
* to a cache of images if it does not already exist.
- *
+ *
* @param descriptor image descriptor or <code>null</code>
* @return image or <code>null</code>
*/
public Image getImage(ImageDescriptor descriptor);
-
+
/**
- * Returns a font for the given font data or <code>null</code>. Adds the font to the font
+ * Returns a font for the given font data or <code>null</code>. Adds the font to the font
* cache if not yet created.
- *
+ *
* @param fontData font data or <code>null</code>
* @return font font or <code>null</code>
*/
public Font getFont(FontData fontData);
/**
- * Returns a color for the given RGB or <code>null</code>. Adds the color to the color
+ * Returns a color for the given RGB or <code>null</code>. Adds the color to the color
* cache if not yet created.
- *
+ *
* @param rgb RGB or <code>null</code>
* @return color or <code>null</code>
*/

Back to the top