mirror of
https://github.com/eclipse-cdt/cdt
synced 2025-04-29 19:45:01 +02:00
destroyExpression() new method.
This commit is contained in:
parent
661845d422
commit
f60c2af5b2
1 changed files with 10 additions and 19 deletions
|
@ -11,27 +11,10 @@ import org.eclipse.cdt.debug.core.cdi.model.ICDIExpression;
|
||||||
*
|
*
|
||||||
* Manages the collection of registered expressions in the
|
* Manages the collection of registered expressions in the
|
||||||
* debug session.
|
* debug session.
|
||||||
*
|
* Auto update is on by default.
|
||||||
* @since Jul 9, 2002
|
* @since Jul 9, 2002
|
||||||
*/
|
*/
|
||||||
public interface ICDIExpressionManager extends ICDISessionObject {
|
public interface ICDIExpressionManager extends ICDIManager {
|
||||||
|
|
||||||
/**
|
|
||||||
* Removes the given array of expressions from the expression
|
|
||||||
* manager.
|
|
||||||
*
|
|
||||||
* @param expressions - the array of expressions to remove
|
|
||||||
* @throws CDIException on failure. Reasons include:
|
|
||||||
*/
|
|
||||||
void removeExpressions(ICDIExpression[] expressions) throws CDIException;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Removes the given expression from the expression manager.
|
|
||||||
*
|
|
||||||
* @param expressions - the expression to remove
|
|
||||||
* @throws CDIException on failure. Reasons include:
|
|
||||||
*/
|
|
||||||
void removeExpression(ICDIExpression expression) throws CDIException;
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Returns an expression specified by the given identifier.
|
* Returns an expression specified by the given identifier.
|
||||||
|
@ -50,4 +33,12 @@ public interface ICDIExpressionManager extends ICDISessionObject {
|
||||||
*/
|
*/
|
||||||
ICDIExpression[] getExpressions() throws CDIException;
|
ICDIExpression[] getExpressions() throws CDIException;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Removes the given expression from the expression manager.
|
||||||
|
*
|
||||||
|
* @param expressions - the expression to remove
|
||||||
|
* @throws CDIException on failure. Reasons include:
|
||||||
|
*/
|
||||||
|
void destroyExpression(ICDIExpression expression) throws CDIException;
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue