mirror of
https://github.com/eclipse-cdt/cdt
synced 2025-07-31 12:55:40 +02:00
Corrected parameter names and JavaDoc of ICDIThread.getStackFrames. Bug 180819.
This commit is contained in:
parent
c1eb85c1fe
commit
f74e2a2c72
1 changed files with 3 additions and 6 deletions
|
@ -36,19 +36,16 @@ public interface ICDIThread extends ICDIExecuteStep, ICDIExecuteResume, ICDISusp
|
||||||
ICDIStackFrame[] getStackFrames() throws CDIException;
|
ICDIStackFrame[] getStackFrames() throws CDIException;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Returns the stack frames contained in this thread between the specified
|
* Returns the stack frames contained in this thread whose levels
|
||||||
* <tt>fromIndex</tt>, inclusive, and <tt>toIndex</tt>, exclusive.
|
* are between the two arguments(inclusive).
|
||||||
* An empty collection is returned if this thread contains
|
* An empty collection is returned if this thread contains
|
||||||
* no stack frames, or is not currently suspended. Stack frames
|
* no stack frames, or is not currently suspended. Stack frames
|
||||||
* are returned in top down order.
|
* are returned in top down order.
|
||||||
*
|
*
|
||||||
* @return a collection of stack frames
|
* @return a collection of stack frames
|
||||||
* @throws CDIException if this method fails. Reasons include:
|
* @throws CDIException if this method fails. Reasons include:
|
||||||
* @throws IndexOutOfBoundsException for an illegal endpoint index value
|
|
||||||
* (fromIndex < 0 || toIndex > size || fromIndex > toIndex).
|
|
||||||
|
|
||||||
*/
|
*/
|
||||||
ICDIStackFrame[] getStackFrames(int fromIndex, int len) throws CDIException;
|
ICDIStackFrame[] getStackFrames(int lowFrame, int highFrame) throws CDIException;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Returns the depth of the stack frames.
|
* Returns the depth of the stack frames.
|
||||||
|
|
Loading…
Add table
Reference in a new issue