Skip to main content

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [List Home]
[aspectj-users] [Newbie]Constructor Pointcut

Hi,

with 'call(*.new(..))' I match all constructors, with 'call(MyClass.new(..))' I match all constructors of the given class. What I want is to match all constructors of a class hierarchy like MyClass, MyClassSubclassA, MyClassSubclassB. I found nothing about how to do somthing like this in the docs.

Any help appreciated
-Tim


Back to the top