For example I have following methods:
public void method1(@MyAnnotation Object a, Object b..) { ... } public void method1(Object a, Object b..., @MyAnnotation Object n, ...) { ... } What is AspectJ pointcut that targets only methods that have parameters annotated with @MyAnnotation?
This annotation can be applied for ANY argument of the method.