1 2 3 4 5 6 7 8 9 10 11 12
package a_impl; import a_intf.A; aspect Af { public A AImpl.f() { System.out.println( "f called" ); return null; } }