mirror of
https://github.com/eclipse-cdt/cdt
synced 2025-04-29 19:45:01 +02:00
Return the new managers.
This commit is contained in:
parent
d139001ac4
commit
760b5b75ef
1 changed files with 22 additions and 0 deletions
|
@ -31,6 +31,13 @@ public interface ICDISession {
|
||||||
*/
|
*/
|
||||||
ICDITarget getCurrentTarget();
|
ICDITarget getCurrentTarget();
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Set the current debug target associatd with this sesion.
|
||||||
|
*
|
||||||
|
* @return ICDITarget the current debug target
|
||||||
|
*/
|
||||||
|
void setCurrentTarget(ICDITarget target) throws CDIException;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Sets the value of a debug session attribute.
|
* Sets the value of a debug session attribute.
|
||||||
*
|
*
|
||||||
|
@ -61,6 +68,13 @@ public interface ICDISession {
|
||||||
*/
|
*/
|
||||||
ICDISignalManager getSignalManager();
|
ICDISignalManager getSignalManager();
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Returns the variable manager of this debug session.
|
||||||
|
*
|
||||||
|
* @return the variable manager
|
||||||
|
*/
|
||||||
|
ICDIVariableManager getVariableManager();
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Returns the expression manager of this debug session.
|
* Returns the expression manager of this debug session.
|
||||||
*
|
*
|
||||||
|
@ -68,6 +82,14 @@ public interface ICDISession {
|
||||||
*/
|
*/
|
||||||
ICDIExpressionManager getExpressionManager();
|
ICDIExpressionManager getExpressionManager();
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Returns the register manager of this debug session.
|
||||||
|
*
|
||||||
|
* @return the register manager
|
||||||
|
*/
|
||||||
|
ICDIRegisterManager getRegisterManager();
|
||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Returns the memory manager of this debug session.
|
* Returns the memory manager of this debug session.
|
||||||
*
|
*
|
||||||
|
|
Loading…
Add table
Reference in a new issue