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.

StaticPointcutRefs.java 208B

12345678910
  1. public class StaticPointcutRefs {
  2. }
  3. abstract aspect A1 {
  4. abstract pointcut ocut(); //: call(* *(..));
  5. static aspect AI {
  6. before(): ocut() {} //ERROR static reference to abstract PCD
  7. }
  8. }