Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'org.eclipse.jdt.debug.ui/ui/org/eclipse/jdt/internal/debug/ui/contentassist/CurrentFrameContext.java')
-rw-r--r--org.eclipse.jdt.debug.ui/ui/org/eclipse/jdt/internal/debug/ui/contentassist/CurrentFrameContext.java9
1 files changed, 6 insertions, 3 deletions
diff --git a/org.eclipse.jdt.debug.ui/ui/org/eclipse/jdt/internal/debug/ui/contentassist/CurrentFrameContext.java b/org.eclipse.jdt.debug.ui/ui/org/eclipse/jdt/internal/debug/ui/contentassist/CurrentFrameContext.java
index 9f729c4d1..beb91643f 100644
--- a/org.eclipse.jdt.debug.ui/ui/org/eclipse/jdt/internal/debug/ui/contentassist/CurrentFrameContext.java
+++ b/org.eclipse.jdt.debug.ui/ui/org/eclipse/jdt/internal/debug/ui/contentassist/CurrentFrameContext.java
@@ -38,7 +38,8 @@ public class CurrentFrameContext extends TypeContext {
/* (non-Javadoc)
* @see org.eclipse.jdt.internal.debug.ui.contentassist.IJavaDebugContentAssistContext#getType()
*/
- public IType getType() throws CoreException {
+ @Override
+ public IType getType() throws CoreException {
IJavaStackFrame frame = getStackFrame();
if (frame != null) {
IType type = JavaDebugUtils.resolveDeclaringType(frame);
@@ -52,7 +53,8 @@ public class CurrentFrameContext extends TypeContext {
/* (non-Javadoc)
* @see org.eclipse.jdt.internal.debug.ui.contentassist.IJavaDebugContentAssistContext#getLocalVariables()
*/
- public String[][] getLocalVariables() throws CoreException {
+ @Override
+ public String[][] getLocalVariables() throws CoreException {
IJavaStackFrame frame = getStackFrame();
if (frame != null) {
IVariable[] variables = frame.getVariables();
@@ -75,7 +77,8 @@ public class CurrentFrameContext extends TypeContext {
/* (non-Javadoc)
* @see org.eclipse.jdt.internal.debug.ui.contentassist.IJavaDebugContentAssistContext#isStatic()
*/
- public boolean isStatic() throws CoreException {
+ @Override
+ public boolean isStatic() throws CoreException {
IJavaStackFrame frame = getStackFrame();
if (frame != null) {
return frame.isStatic();

Back to the top