1 11 package org.eclipse.debug.core.model; 12 13 14 import org.eclipse.debug.core.DebugException; 15 16 34 35 public interface IThread extends IDebugElement, ISuspendResume, IStep, ITerminate { 36 50 public IStackFrame[] getStackFrames() throws DebugException; 51 52 64 public boolean hasStackFrames() throws DebugException; 65 66 76 public int getPriority() throws DebugException; 77 87 public IStackFrame getTopStackFrame() throws DebugException; 88 98 public String getName() throws DebugException; 99 100 110 public IBreakpoint[] getBreakpoints(); 111 } 112 | Popular Tags |