Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDarin Wright2009-09-21 19:47:13 +0000
committerDarin Wright2009-09-21 19:47:13 +0000
commit64facb405c6b0588d4c01439c458884209218d69 (patch)
treefe5a2adf46f667f9dbd9e0cb2bc07b3c6c6bb776 /org.eclipse.debug.ui/ui/org
parented78ed05880e04b3e9e062ef2a4d9da484d793d5 (diff)
downloadeclipse.platform.debug-64facb405c6b0588d4c01439c458884209218d69.tar.gz
eclipse.platform.debug-64facb405c6b0588d4c01439c458884209218d69.tar.xz
eclipse.platform.debug-64facb405c6b0588d4c01439c458884209218d69.zip
Bug 286310 - Checkbox support for Flexible Hierachy view
Diffstat (limited to 'org.eclipse.debug.ui/ui/org')
-rw-r--r--org.eclipse.debug.ui/ui/org/eclipse/debug/internal/ui/viewers/model/provisional/ICheckboxModelProxy.java6
1 files changed, 6 insertions, 0 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 71ac66958..d1f720358 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
@@ -7,6 +7,7 @@
*
* Contributors:
* Patrick Chuong (Texas Instruments) - Initial API and implementation (Bug 286310)
+ * IBM Corporation - ongoing enhancements
*****************************************************************/
package org.eclipse.debug.internal.ui.viewers.model.provisional;
@@ -24,6 +25,11 @@ public interface ICheckboxModelProxy extends IModelProxy {
/**
* 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

Back to the top