1 2 3 4 5 6
public aspect TestAroundAspect{ void around(): execution(void Test.sayHello(String)){ proceed(); } }