mirror of
https://github.com/eclipse-cdt/cdt
synced 2025-07-25 09:55:29 +02:00
Renamve getVariableObject(String, String, String)
getGlobalVariableObject(); removing getVariableObject(ICDIStackframe, String)
This commit is contained in:
parent
d2590e32f9
commit
809d21f323
1 changed files with 1 additions and 21 deletions
|
@ -39,17 +39,7 @@ public interface ICDIVariableManager extends ICDIManager {
|
|||
* @return ICDIVariableObject
|
||||
* @throws CDIException
|
||||
*/
|
||||
ICDIVariableObject getVariableObject(String filename, String function, String name) throws CDIException;
|
||||
|
||||
/**
|
||||
* Use the stackframe to return an ICDIVariableObject for name.
|
||||
*
|
||||
* @param stack
|
||||
* @param name
|
||||
* @return ICDIVariableObject
|
||||
* @throws CDIException
|
||||
*/
|
||||
ICDIVariableObject getVariableObject(ICDIStackFrame stack, String name) throws CDIException;
|
||||
ICDIVariableObject getGlobalVariableObject(String filename, String function, String name) throws CDIException;
|
||||
|
||||
/**
|
||||
* Consider the variable object as an Array of type and range[start, start + length - 1]
|
||||
|
@ -99,16 +89,6 @@ public interface ICDIVariableManager extends ICDIManager {
|
|||
*/
|
||||
ICDIVariable createVariable(ICDIVariableObject var) throws CDIException;
|
||||
|
||||
/**
|
||||
* Method getArgumentObject.
|
||||
* Returns a argument Object that will hold the name and the stackframe.
|
||||
* @param stack
|
||||
* @param name
|
||||
* @return ICDIArgumentObject
|
||||
* @throws CDIException
|
||||
*/
|
||||
ICDIArgumentObject getArgumentObject(ICDIStackFrame stack, String name) throws CDIException;
|
||||
|
||||
/**
|
||||
* Method getArgumentObjects.
|
||||
* Returns all the local arguments of that stackframe.
|
||||
|
|
Loading…
Add table
Reference in a new issue