[aspectwerkz-user] pointcut on inherited method

[email protected] Mon, 13 Feb 2006 13:32:15 -0800
Newsgroups gmane.comp.java.aspectwerkz.user
Message-ID <OFC9439E64.BB1D8AB0-ON88257114.0075E01F-88257114.00764F73@expeditors.com>
Could I specify the inherited method without specifying the parent class in
a pointcut?
For example, I have Class B extended from Class A and inherited method C.
The pointcut  "execution(* B.C(..)) doesn't work, but the pointcut
"execution(* A.C(..)) works OK.

Regards,
Man