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.

AfterReturningStaticinitializationAdvice.aj 249B

123456789
  1. public aspect AfterReturningStaticinitializationAdvice {
  2. pointcut staticInit () :
  3. staticinitialization(*Test);
  4. after () returning : staticInit() {
  5. System.out.println("? AfterReturningStaticinitializationAdvice.staticInit()");
  6. }
  7. }