Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.

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. }