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/IElementContentProvider.java')
-rw-r--r--org.eclipse.debug.ui/ui/org/eclipse/debug/internal/ui/viewers/model/provisional/IElementContentProvider.java24
1 files changed, 12 insertions, 12 deletions
diff --git a/org.eclipse.debug.ui/ui/org/eclipse/debug/internal/ui/viewers/model/provisional/IElementContentProvider.java b/org.eclipse.debug.ui/ui/org/eclipse/debug/internal/ui/viewers/model/provisional/IElementContentProvider.java
index d3b682880..126850d2b 100644
--- a/org.eclipse.debug.ui/ui/org/eclipse/debug/internal/ui/viewers/model/provisional/IElementContentProvider.java
+++ b/org.eclipse.debug.ui/ui/org/eclipse/debug/internal/ui/viewers/model/provisional/IElementContentProvider.java
@@ -16,10 +16,10 @@ package org.eclipse.debug.internal.ui.viewers.model.provisional;
* Provides content for an element in a tree model viewer.
* <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 IElementContentProvider {
@@ -27,29 +27,29 @@ public interface IElementContentProvider {
/**
* Updates the number of children for the given parent elements in the
* specified requests.
- *
+ *
* @param updates Each update specifies an element to update and provides
- * a store for the result. The update array is guaranteed to have at least
+ * a store for the result. The update array is guaranteed to have at least
* one element, and for all updates to have the same presentation context.
*/
public void update(IChildrenCountUpdate[] updates);
-
+
/**
* Updates children as requested by the given updates.
- *
+ *
* @param updates Each update specifies children to update and stores results.
- * The update array is guaranteed to have at least one element, and for
+ * The update array is guaranteed to have at least one element, and for
* all updates to have the same presentation context.
- */
+ */
public void update(IChildrenUpdate[] updates);
-
+
/**
* Updates whether elements have children.
- *
+ *
* @param updates Each update specifies an element to update and provides
- * a store for the result. The update array is guaranteed to have at least
+ * a store for the result. The update array is guaranteed to have at least
* one element, and for all updates to have the same presentation context.
*/
public void update(IHasChildrenUpdate[] updates);
-
+
}

Back to the top