mirror of
https://github.com/eclipse-cdt/cdt
synced 2025-04-22 06:02:11 +02:00
Help method getCurrentTarget()
This commit is contained in:
parent
e1c0a5fdee
commit
1e4c69fd2c
1 changed files with 12 additions and 5 deletions
|
@ -13,8 +13,7 @@ import org.eclipse.cdt.debug.core.cdi.model.ICDITarget;
|
||||||
*
|
*
|
||||||
* @since Jun 28, 2002
|
* @since Jun 28, 2002
|
||||||
*/
|
*/
|
||||||
public interface ICDISession
|
public interface ICDISession {
|
||||||
{
|
|
||||||
/**
|
/**
|
||||||
* Returns all the debug targets associatd with this sesion,
|
* Returns all the debug targets associatd with this sesion,
|
||||||
* or an empty collection if no debug targets are associated
|
* or an empty collection if no debug targets are associated
|
||||||
|
@ -24,6 +23,14 @@ public interface ICDISession
|
||||||
*/
|
*/
|
||||||
ICDITarget[] getTargets();
|
ICDITarget[] getTargets();
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Returns the current debug target associatd with this sesion,
|
||||||
|
* or null if no debug targets are associated with this session.
|
||||||
|
*
|
||||||
|
* @return ICDITarget the current debug target
|
||||||
|
*/
|
||||||
|
ICDITarget getCurrentTarget();
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Sets the value of a debug session attribute.
|
* Sets the value of a debug session attribute.
|
||||||
*
|
*
|
||||||
|
@ -59,7 +66,7 @@ public interface ICDISession
|
||||||
*
|
*
|
||||||
* @return the expression manager
|
* @return the expression manager
|
||||||
*/
|
*/
|
||||||
ICDIVariableManager getVariableManager();
|
ICDIExpressionManager getExpressionManager();
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Returns the memory manager of this debug session.
|
* Returns the memory manager of this debug session.
|
||||||
|
|
Loading…
Add table
Reference in a new issue