Examples of supportsDropToFrame()


Examples of org.eclipse.jdt.internal.debug.core.model.JDIStackFrame.supportsDropToFrame()

        affectedFrame = getAffectedFrame(thread, replacedClassNames);
        if (affectedFrame == null) {
          // No frame to drop to in this thread
          continue;
        }
        if (affectedFrame.supportsDropToFrame()) {
          popFrames.add(affectedFrame);
        } else {
          // if any thread that should drop does not support the drop,
          // do not drop in any threads.
          for (int j = 0; j < numThreads; j++) {
View Full Code Here

Examples of org.eclipse.jdt.internal.debug.core.model.JDIStackFrame.supportsDropToFrame()

          } catch (CoreException exception) {
            // If smart drop to frame fails, just do type-based drop
          }
        }

        if (frame.supportsDropToFrame()) {
          affectedFrame = frame;
          break;
        }
        // The frame we wanted to drop to cannot be popped.
        // Set the affected frame to the next lowest pop-able
View Full Code Here

Examples of org.eclipse.jdt.internal.debug.core.model.JDIStackFrame.supportsDropToFrame()

        // Set the affected frame to the next lowest pop-able
        // frame on the stack.
        while (j > 0) {
          j--;
          frame = (JDIStackFrame) frames.get(j);
          if (frame.supportsDropToFrame()) {
            affectedFrame = frame;
            break;
          }
        }
        break;
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.