package test; class MultipleExec { hook Test { Test(method(..args),method2(..args)) { execution(method)&&!execution(method2); } before() { System.out.println("BEFORE: "+thisJoinPoint.getSignature()+" "); } after() { System.out.println("AFTER: "+thisJoinPoint.getSignature()+" "); } } }