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.

PR106461.aj 330B

123456789101112131415161718
  1. public aspect PR106461 {
  2. pointcut missingNamePattern() : call(* Foo+(..));
  3. pointcut missingNamePatternInField() : get(* Foo+);
  4. pointcut missingNamePatternInConstructor() : call(Foo+(..));
  5. pointcut butThisIsAllowedOfCourse() : call(* *(..));
  6. pointcut asIsThis() : call(* foo(..));
  7. }
  8. class Foo {
  9. void foo() {}
  10. }