Package com.intellij.xdebugger

Examples of com.intellij.xdebugger.XDebugSessionAdapter


  public void selectUpperNavigatableStackFrame(@NotNull final XDebugSession session) {
    final XStackFrame frameToStopAt = myActiveExecutionStack.getFrameToStopAt();

    if (frameToStopAt != null && frameToStopAt != myActiveExecutionStack.getTopFrame()) {
      session.addSessionListener(new XDebugSessionAdapter() {
        @Override
        public void stackFrameChanged() {
          if (session.getCurrentStackFrame() != frameToStopAt) {
            session.removeSessionListener(this);
            session.setCurrentStackFrame(myActiveExecutionStack, frameToStopAt, false);
View Full Code Here

TOP

Related Classes of com.intellij.xdebugger.XDebugSessionAdapter

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.