1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-07-29 20:05:35 +02:00

Corrected parameter names and JavaDoc of ICDIThread.getStackFrames. Bug 180819.

This commit is contained in:
John Cortell 2007-04-05 13:39:22 +00:00
parent c1eb85c1fe
commit f74e2a2c72

View file

@ -36,19 +36,16 @@ public interface ICDIThread extends ICDIExecuteStep, ICDIExecuteResume, ICDISusp
ICDIStackFrame[] getStackFrames() throws CDIException;
/**
* Returns the stack frames contained in this thread between the specified
* <tt>fromIndex</tt>, inclusive, and <tt>toIndex</tt>, exclusive.
* Returns the stack frames contained in this thread whose levels
* are between the two arguments(inclusive).
* An empty collection is returned if this thread contains
* no stack frames, or is not currently suspended. Stack frames
* are returned in top down order.
*
* @return a collection of stack frames
* @throws CDIException if this method fails. Reasons include:
* @throws IndexOutOfBoundsException for an illegal endpoint index value
* (fromIndex &lt; 0 || toIndex &gt; size || fromIndex &gt; toIndex).
*/
ICDIStackFrame[] getStackFrames(int fromIndex, int len) throws CDIException;
ICDIStackFrame[] getStackFrames(int lowFrame, int highFrame) throws CDIException;
/**
* Returns the depth of the stack frames.