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.

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