1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-04-29 19:45:01 +02:00

New method setCurrentFrame()

This commit is contained in:
Alain Magloire 2003-01-29 02:57:40 +00:00
parent 1d53f62a9b
commit 089f19bef4

View file

@ -49,11 +49,19 @@ public interface ICDIThread extends ICDIObject {
int getStackFrameCount() throws CDIException; int getStackFrameCount() throws CDIException;
/** /**
* Set the curretn Stack for the thread. * Set the current Stack for the thread.
* @param - ICDIStackFrame * @param - ICDIStackFrame
*/ */
void setCurrentStackFrame(ICDIStackFrame current) throws CDIException; void setCurrentStackFrame(ICDIStackFrame current) throws CDIException;
/**
* Set the current frame whithout generation any events, for example
* registers changed events.
* @param frame
* @param b
*/
void setCurrentStackFrame(ICDIStackFrame frame, boolean doUpdate) throws CDIException;
/** /**
* Set the current stackframe. * Set the current stackframe.
* @return ICDIStackFrame * @return ICDIStackFrame