Skip to main content

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [List Home]
[aspectj-users] How do I specify the argument at any location ?

Hi all,
@AspectJ support wild card in args such as:

args(foo, ..) // first argument match foo, the rest is any
or
args(.., foo) // last argument match foo, the rest is any

but I can't specify foo at any location like:

args(..,foo, ..) // one argument match foo at any location

It seems @AspectJ only support one ".." in the expression. Is there any
other way
to achieve this ? or @AspectJ just not support such feature ?

Thanks in advance

-- 
View this message in context: http://www.nabble.com/How-do-I-specify-the-argument-at-any-location---tf2456595.html#a6847040
Sent from the AspectJ - users mailing list archive at Nabble.com.



Back to the top