use of com.jetbrains.python.debugger.PyStackFrameInfo in project intellij-community by JetBrains.
the class PythonConsoleView method showVariables.
public void showVariables(PydevConsoleCommunication consoleCommunication) {
PyStackFrame stackFrame = new PyStackFrame(getProject(), consoleCommunication, new PyStackFrameInfo("", "", "", null), null);
final XStandaloneVariablesView view = new XStandaloneVariablesView(getProject(), new PyDebuggerEditorsProvider(), stackFrame);
consoleCommunication.addCommunicationListener(new ConsoleCommunicationListener() {
@Override
public void commandExecuted(boolean more) {
view.rebuildView();
}
@Override
public void inputRequested() {
}
});
mySplitView = view;
Disposer.register(this, view);
splitWindow();
}
Aggregations