1 2 3 4 5
import a.b.c.Blah; public aspect AspectC { before(): execution(@Blah * *(..)) {System.out.println("C");} }