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/ICheckboxModelProxy.java')
-rw-r--r--org.eclipse.debug.ui/ui/org/eclipse/debug/internal/ui/viewers/model/provisional/ICheckboxModelProxy.java8
1 files changed, 4 insertions, 4 deletions
diff --git a/org.eclipse.debug.ui/ui/org/eclipse/debug/internal/ui/viewers/model/provisional/ICheckboxModelProxy.java b/org.eclipse.debug.ui/ui/org/eclipse/debug/internal/ui/viewers/model/provisional/ICheckboxModelProxy.java
index 3513b2adf..3c3346ff3 100644
--- a/org.eclipse.debug.ui/ui/org/eclipse/debug/internal/ui/viewers/model/provisional/ICheckboxModelProxy.java
+++ b/org.eclipse.debug.ui/ui/org/eclipse/debug/internal/ui/viewers/model/provisional/ICheckboxModelProxy.java
@@ -16,22 +16,22 @@ import org.eclipse.jface.viewers.TreePath;
/**
* Optional extension to a model proxy for models that use a check box tree viewer. Provides
- * notification for check state changes in the tree.
- *
+ * notification for check state changes in the tree.
+ *
* @since 3.6
* @see IModelProxy
*/
public interface ICheckboxModelProxy {
/**
- * Notifies the receiver that the given element has had its
+ * Notifies the receiver that the given element has had its
* checked state modified in the viewer.
* <p>
* This method is called in the UI thread. Clients that execute long running operations or
* communicate with a potentially unreliable or blocking model should run those operations
* asynchronously.
* </p>
- *
+ *
* @param context Presentation context in which the element was updated.
* @param viewerInput The root element of the viewer where the check
* selection took place.

Back to the top