Skip to main content

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [List Home]
[aspectj-users] passing information to a pointcut

Hi everybody,

is there a possibility to pass information other than args() and this() and alike to a pointcut?? For example like

pointcut logPointcut(Object thiz, Object logger) :
	call (* *..Clazz.method(..) && this(thiz) && logger(myLogger);
                                                     \--------------/
(something like this) ---------------------------------------^

Didn't find any information on that...

Thanks,
Simon


Back to the top