| java.lang.Object edu.rice.cs.drjava.model.debug.DebugStackData
All known Subclasses: edu.rice.cs.drjava.model.debug.jpda.JPDAStackData,
DebugStackData | public class DebugStackData (Code) | | Class for keeping track of a stack frame in the debugger.
version: $Id: DebugStackData.java 4255 2007-08-28 19:17:37Z mgricken $ |
Constructor Summary | |
public | DebugStackData(String method, int line) Object for keeping track of a stack frame. |
Method Summary | |
public int | getLine() Returns the line number of this frame of the stack. | public String | getMethod() Returns the name of the method at this frame of the stack. |
DebugStackData | public DebugStackData(String method, int line)(Code) | | Object for keeping track of a stack frame.
Parameters: frame - JPDA's reference to the stack frame |
getLine | public int getLine()(Code) | | Returns the line number of this frame of the stack.
|
getMethod | public String getMethod()(Code) | | Returns the name of the method at this frame of the stack.
|
|
|