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.

WorldAspect.aj 195B

12345678910111213
  1. package pack;
  2. import pkg.MyAnnotation;
  3. public aspect WorldAspect {
  4. pointcut exec() : execution(@MyAnnotation * *.*(..));
  5. after() returning : exec() {
  6. System.out.println("world");
  7. }
  8. }