Skip to main content

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [List Home]
[aspectj-users] Variable arguments lenght

Hello,
I defined the following pointcut :
pointcut MyPointCut(): call(MyClass+ * (..))

And I try to use it in an "around" advice.
I want to get the method's parameters (in the context), without knowing neither their number, nor their type.
So i guess i can't use the args() keyword in a classic way...
What can i do?

Thanks,
Bastien.


Back to the top