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.

TestEmptyPointcutAtAspect.java 225B

123456789101112
  1. import org.aspectj.lang.annotation.Aspect;
  2. import org.aspectj.lang.annotation.Pointcut;
  3. @Aspect
  4. public class TestEmptyPointcutAtAspect {
  5. @Pointcut("")
  6. protected void scope () {}
  7. @Pointcut
  8. protected void scope2() {}
  9. }