Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDarin Wright2007-12-07 14:49:17 +0000
committerDarin Wright2007-12-07 14:49:17 +0000
commit5b7405bd975a14f545e13dc5da5b632742536952 (patch)
treecce04b40f2b03556b0d3ebcce52a4347db71a72f /org.eclipse.debug.ui/ui/org/eclipse/debug/internal/ui/elements
parentf977ea733399c6b09355edb0682b32a5572993ef (diff)
downloadeclipse.platform.debug-5b7405bd975a14f545e13dc5da5b632742536952.tar.gz
eclipse.platform.debug-5b7405bd975a14f545e13dc5da5b632742536952.tar.xz
eclipse.platform.debug-5b7405bd975a14f545e13dc5da5b632742536952.zip
Bug 202678 - IViewerUpdate should have a method to return viewer input
Diffstat (limited to 'org.eclipse.debug.ui/ui/org/eclipse/debug/internal/ui/elements')
-rw-r--r--org.eclipse.debug.ui/ui/org/eclipse/debug/internal/ui/elements/adapters/RegisterGroupProxy.java8
1 files changed, 8 insertions, 0 deletions
diff --git a/org.eclipse.debug.ui/ui/org/eclipse/debug/internal/ui/elements/adapters/RegisterGroupProxy.java b/org.eclipse.debug.ui/ui/org/eclipse/debug/internal/ui/elements/adapters/RegisterGroupProxy.java
index af94e6616..ba69b6ff7 100644
--- a/org.eclipse.debug.ui/ui/org/eclipse/debug/internal/ui/elements/adapters/RegisterGroupProxy.java
+++ b/org.eclipse.debug.ui/ui/org/eclipse/debug/internal/ui/elements/adapters/RegisterGroupProxy.java
@@ -105,6 +105,14 @@ public class RegisterGroupProxy implements IModelProxyFactory, IColumnPresentati
fViewerUpdate.setStatus(getStatus());
fViewerUpdate.done();
}
+
+ /* (non-Javadoc)
+ * @see org.eclipse.debug.internal.ui.viewers.model.provisional.IViewerUpdate#getViewerInput()
+ */
+ public Object getViewerInput() {
+ return fFrame;
+ }
+
}
private class CountUpdate extends Update implements IChildrenCountUpdate {

Back to the top