You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

AbstractTracing.aj 238B

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