1 2 3 4 5 6 7 8 9 10 11 12 13
package pack; public class C1 { public void testMethod() { new C1(); } } aspect A extends A1<C1> { protected pointcut creation() : call(C1.new()); }