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.

Test035.java 184B

12345678910
  1. // "@Before and @After on one method"
  2. import org.aspectj.lang.annotation.*;
  3. aspect A{
  4. @Before("call(* *.*(..))")
  5. @After("call(* *.*(..))")
  6. public void someCall(){
  7. }
  8. }