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