1 2 3 4 5
public aspect Before { before() : call(* getName()) { System.out.println("Before call"); } }