> public pointcut PT_new() : > > within(com.foo.BarInterface) && > call(*.new(..)); >
Try this instead:
public pointcut PT_new() :
within(com.foo.BarInterface+) &&
call(*.new(..));
'+' means to include subclasses.
_______________________________________________
aspectj-users mailing list
[email protected]
https://dev.eclipse.org/mailman/listinfo/aspectj-users
