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/provisional/IElementLabelProvider.java')
-rw-r--r--org.eclipse.debug.ui/ui/org/eclipse/debug/internal/ui/viewers/model/provisional/IElementLabelProvider.java12
1 files changed, 6 insertions, 6 deletions
diff --git a/org.eclipse.debug.ui/ui/org/eclipse/debug/internal/ui/viewers/model/provisional/IElementLabelProvider.java b/org.eclipse.debug.ui/ui/org/eclipse/debug/internal/ui/viewers/model/provisional/IElementLabelProvider.java
index 90551a572..c99a3f67c 100644
--- a/org.eclipse.debug.ui/ui/org/eclipse/debug/internal/ui/viewers/model/provisional/IElementLabelProvider.java
+++ b/org.eclipse.debug.ui/ui/org/eclipse/debug/internal/ui/viewers/model/provisional/IElementLabelProvider.java
@@ -16,20 +16,20 @@ package org.eclipse.debug.internal.ui.viewers.model.provisional;
* or implemented directly.
* <p>
* Note: provider methods are called in the Display thread of the viewer.
- * To avoid blocking the UI, long running operations should be performed
+ * To avoid blocking the UI, long running operations should be performed
* asynchronously.
* </p>
- *
+ *
* @since 3.3
*/
public interface IElementLabelProvider {
-
+
/**
* Updates the specified labels.
- *
+ *
* @param updates Each update specifies the element and context for which a label is requested and
- * stores label attributes. The update array is guaranteed to have at least one element, and for
- * all updates to have the same presentation context.
+ * stores label attributes. The update array is guaranteed to have at least one element, and for
+ * all updates to have the same presentation context.
*/
public void update(ILabelUpdate[] updates);
}

Back to the top