Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDarin Wright2006-04-25 16:28:00 +0000
committerDarin Wright2006-04-25 16:28:00 +0000
commitb668bd14975ac4eac2f281a29aa173e573fa7cdb (patch)
treeae0c97b3f6574951da90929e00085a497a475f9a /org.eclipse.debug.ui/ui/org/eclipse/debug/internal/ui/viewers/provisional
parentba32761a09f2714f573bef1fe1a5d95b67605360 (diff)
downloadeclipse.platform.debug-b668bd14975ac4eac2f281a29aa173e573fa7cdb.tar.gz
eclipse.platform.debug-b668bd14975ac4eac2f281a29aa173e573fa7cdb.tar.xz
eclipse.platform.debug-b668bd14975ac4eac2f281a29aa173e573fa7cdb.zip
Bug 126725 - "Find" in virtual trees
Diffstat (limited to 'org.eclipse.debug.ui/ui/org/eclipse/debug/internal/ui/viewers/provisional')
-rw-r--r--org.eclipse.debug.ui/ui/org/eclipse/debug/internal/ui/viewers/provisional/IAsynchronousRequestMonitor.java7
1 files changed, 7 insertions, 0 deletions
diff --git a/org.eclipse.debug.ui/ui/org/eclipse/debug/internal/ui/viewers/provisional/IAsynchronousRequestMonitor.java b/org.eclipse.debug.ui/ui/org/eclipse/debug/internal/ui/viewers/provisional/IAsynchronousRequestMonitor.java
index 441a43c65..b5767a73b 100644
--- a/org.eclipse.debug.ui/ui/org/eclipse/debug/internal/ui/viewers/provisional/IAsynchronousRequestMonitor.java
+++ b/org.eclipse.debug.ui/ui/org/eclipse/debug/internal/ui/viewers/provisional/IAsynchronousRequestMonitor.java
@@ -42,4 +42,11 @@ public interface IAsynchronousRequestMonitor extends IProgressMonitor {
* @param status request status
*/
public void setStatus(IStatus status);
+
+ /**
+ * Returns the status of this request, or <code>null</code>.
+ *
+ * @return request status or <code>null</code>
+ */
+ public IStatus getStatus();
}

Back to the top