1 11 package org.eclipse.debug.core.model; 12 13 14 import org.eclipse.debug.core.DebugException; 15 16 47 public interface IStackFrame extends IDebugElement, IStep, ISuspendResume, ITerminate { 48 54 public IThread getThread(); 55 67 public IVariable[] getVariables() throws DebugException; 68 69 80 public boolean hasVariables() throws DebugException; 81 82 96 public int getLineNumber() throws DebugException; 97 98 117 public int getCharStart() throws DebugException; 118 119 138 public int getCharEnd() throws DebugException; 139 140 151 public String getName() throws DebugException; 152 153 168 public IRegisterGroup[] getRegisterGroups() throws DebugException; 169 170 181 public boolean hasRegisterGroups() throws DebugException; 182 } 183 | Popular Tags |