1
0
Fork 0
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:
Alain Magloire 2003-01-27 03:36:24 +00:00
parent d139001ac4
commit 760b5b75ef

View file

@ -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.
* *