1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-04-29 19:45:01 +02:00

[205142] Changed IStack.getArguments() and IStack.getVariables() to accept strong-typed IFrameDMContext.

This commit is contained in:
Pawel Piech 2007-11-21 23:58:19 +00:00
parent d9ee930837
commit 976a665a68

View file

@ -96,12 +96,12 @@ public interface IStack extends IDMService {
/**
* Retrieves variables which were arguments to the stack frame's function.
*/
void getArguments(IDMContext frameCtx, DataRequestMonitor<IVariableDMContext[]> rm);
void getArguments(IFrameDMContext frameCtx, DataRequestMonitor<IVariableDMContext[]> rm);
/**
* Retrieves variables local to the stack frame.
*/
void getLocals(IDMContext frameCtx, DataRequestMonitor<IVariableDMContext[]> rm);
void getLocals(IFrameDMContext frameCtx, DataRequestMonitor<IVariableDMContext[]> rm);
/**
* Retrieves the number of stack frames available for the given context..