mirror of
https://github.com/eclipse-cdt/cdt
synced 2025-04-22 06:02:11 +02:00
Revert to ICDIExpressionManager instead of ICDIVariableManager.
This commit is contained in:
parent
1e4c69fd2c
commit
485e389263
1 changed files with 8 additions and 9 deletions
|
@ -14,8 +14,7 @@ import org.eclipse.cdt.debug.core.cdi.model.ICDIExpression;
|
||||||
*
|
*
|
||||||
* @since Jul 9, 2002
|
* @since Jul 9, 2002
|
||||||
*/
|
*/
|
||||||
public interface ICDIVariableManager extends ICDISessionObject
|
public interface ICDIExpressionManager extends ICDISessionObject {
|
||||||
{
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Removes the given array of expressions from the expression
|
* Removes the given array of expressions from the expression
|
||||||
|
@ -24,7 +23,7 @@ public interface ICDIVariableManager extends ICDISessionObject
|
||||||
* @param expressions - the array of expressions to remove
|
* @param expressions - the array of expressions to remove
|
||||||
* @throws CDIException on failure. Reasons include:
|
* @throws CDIException on failure. Reasons include:
|
||||||
*/
|
*/
|
||||||
void removeExpressions( ICDIExpression[] expressions ) throws CDIException;
|
void removeExpressions(ICDIExpression[] expressions) throws CDIException;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Removes the given expression from the expression manager.
|
* Removes the given expression from the expression manager.
|
||||||
|
@ -32,7 +31,7 @@ public interface ICDIVariableManager extends ICDISessionObject
|
||||||
* @param expressions - the expression to remove
|
* @param expressions - the expression to remove
|
||||||
* @throws CDIException on failure. Reasons include:
|
* @throws CDIException on failure. Reasons include:
|
||||||
*/
|
*/
|
||||||
void removeExpression( ICDIExpression expression ) throws CDIException;
|
void removeExpression(ICDIExpression expression) throws CDIException;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Returns an expression specified by the given identifier.
|
* Returns an expression specified by the given identifier.
|
||||||
|
@ -41,7 +40,7 @@ public interface ICDIVariableManager extends ICDISessionObject
|
||||||
* @return ICDIExpression an expression specified by the given identifier
|
* @return ICDIExpression an expression specified by the given identifier
|
||||||
* @throws CDIException on failure. Reasons include:
|
* @throws CDIException on failure. Reasons include:
|
||||||
*/
|
*/
|
||||||
ICDIExpression createExpression( String expressionId ) throws CDIException;
|
ICDIExpression createExpression(String name) throws CDIException;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Returns a collection of all registered expressions, possibly empty.
|
* Returns a collection of all registered expressions, possibly empty.
|
Loading…
Add table
Reference in a new issue