From 371df0f163514fd8402b66ef7ca8ac6b1ce9bf69 Mon Sep 17 00:00:00 2001 From: "Egor.Ushakov" Date: Tue, 15 Sep 2015 11:34:19 +0300 Subject: [PATCH] annotated com.sun.jdi.StackFrame --- .../debugger/jdi/StackFrameProxyImpl.java | 2 ++ java/jdkAnnotations/com/sun/jdi/annotations.xml | 16 ++++++++++++++++ 2 files changed, 18 insertions(+) diff --git a/java/debugger/impl/src/com/intellij/debugger/jdi/StackFrameProxyImpl.java b/java/debugger/impl/src/com/intellij/debugger/jdi/StackFrameProxyImpl.java index 96e4b64aecf6..e24067f711d3 100644 --- a/java/debugger/impl/src/com/intellij/debugger/jdi/StackFrameProxyImpl.java +++ b/java/debugger/impl/src/com/intellij/debugger/jdi/StackFrameProxyImpl.java @@ -237,6 +237,7 @@ public class StackFrameProxyImpl extends JdiProxy implements StackFrameProxy { return myThisReference; } + @NotNull public List visibleVariables() throws EvaluateException { DebuggerManagerThreadImpl.assertIsManagerThread(); InvalidStackFrameException error = null; @@ -312,6 +313,7 @@ public class StackFrameProxyImpl extends JdiProxy implements StackFrameProxy { throw new EvaluateException(error.getMessage(), error); } + @NotNull public List getArgumentValues() throws EvaluateException { DebuggerManagerThreadImpl.assertIsManagerThread(); InvalidStackFrameException error = null; diff --git a/java/jdkAnnotations/com/sun/jdi/annotations.xml b/java/jdkAnnotations/com/sun/jdi/annotations.xml index 8d2899ad4598..1f5ce668732d 100644 --- a/java/jdkAnnotations/com/sun/jdi/annotations.xml +++ b/java/jdkAnnotations/com/sun/jdi/annotations.xml @@ -2,4 +2,20 @@ + + + + + + + + + + + + + + + \ No newline at end of file