1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-07-24 09:25:31 +02:00

The getArguments method should return an array of ICArgument type.

This commit is contained in:
Mikhail Khodjaiants 2002-08-07 21:49:41 +00:00
parent ac5ef77825
commit 619ee91fb2

View file

@ -43,5 +43,5 @@ public interface ICStackFrame extends ICObject
* @return a collection of arguments
* @throws CDIException if this method fails. Reasons include:
*/
ICVariable[] getArguments() throws CDIException;
ICArgument[] getArguments() throws CDIException;
}