1 2 3 4 5 6 7 8
public abstract aspect AbstractTracing { protected abstract pointcut scope (); before () : execution(public static void main(String[])) && scope() { System.out.println("? " + thisJoinPointStaticPart.getSignature().getName()); } }