1
0
Fork 0
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:
Alain Magloire 2003-01-27 03:32:30 +00:00
parent 661845d422
commit f60c2af5b2

View file

@ -11,27 +11,10 @@ import org.eclipse.cdt.debug.core.cdi.model.ICDIExpression;
*
* Manages the collection of registered expressions in the
* debug session.
*
* Auto update is on by default.
* @since Jul 9, 2002
*/
public interface ICDIExpressionManager extends ICDISessionObject {
/**
* 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;
public interface ICDIExpressionManager extends ICDIManager {
/**
* Returns an expression specified by the given identifier.
@ -50,4 +33,12 @@ public interface ICDIExpressionManager extends ICDISessionObject {
*/
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;
}