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:
parent
1d53f62a9b
commit
089f19bef4
1 changed files with 9 additions and 1 deletions
|
@ -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
|
||||||
|
|
Loading…
Add table
Reference in a new issue