Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSarika Sinha2019-01-22 08:39:13 +0000
committerSarika Sinha2019-01-22 08:39:13 +0000
commit1e13edbf3ba52a50bae74a261945d8b4f8217d60 (patch)
treedf9c9addbbcb2c11dd99372f1c4bee53a91621f1 /org.eclipse.debug.ui/ui/org/eclipse/debug/internal
parente037f52f58741dd018f5dab8a9f107e51ff3d358 (diff)
downloadeclipse.platform.debug-1e13edbf3ba52a50bae74a261945d8b4f8217d60.tar.gz
eclipse.platform.debug-1e13edbf3ba52a50bae74a261945d8b4f8217d60.tar.xz
eclipse.platform.debug-1e13edbf3ba52a50bae74a261945d8b4f8217d60.zip
Bug 334991 - Variables view: Add history with recent expressions to the
Diffstat (limited to 'org.eclipse.debug.ui/ui/org/eclipse/debug/internal')
-rw-r--r--org.eclipse.debug.ui/ui/org/eclipse/debug/internal/ui/views/variables/details/DefaultDetailPane.java9
1 files changed, 8 insertions, 1 deletions
diff --git a/org.eclipse.debug.ui/ui/org/eclipse/debug/internal/ui/views/variables/details/DefaultDetailPane.java b/org.eclipse.debug.ui/ui/org/eclipse/debug/internal/ui/views/variables/details/DefaultDetailPane.java
index 6e507eed0..d3226f62c 100644
--- a/org.eclipse.debug.ui/ui/org/eclipse/debug/internal/ui/views/variables/details/DefaultDetailPane.java
+++ b/org.eclipse.debug.ui/ui/org/eclipse/debug/internal/ui/views/variables/details/DefaultDetailPane.java
@@ -1,5 +1,5 @@
/*******************************************************************************
- * Copyright (c) 2006, 2017 IBM Corporation and others.
+ * Copyright (c) 2006, 2019 IBM Corporation and others.
*
* This program and the accompanying materials
* are made available under the terms of the Eclipse Public License 2.0
@@ -1182,4 +1182,11 @@ public class DefaultDetailPane extends AbstractDetailPane implements IDetailPane
public ISelectionProvider getSelectionProvider() {
return fSourceViewer.getSelectionProvider();
}
+
+ /**
+ * @return the fSourceViewer
+ */
+ protected SourceViewer getSourceViewer() {
+ return fSourceViewer;
+ }
}

Back to the top