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.

AbstractBeanConfigurerAspect.aj 224B

1234567891011121314
  1. package pkg;
  2. public abstract aspect AbstractBeanConfigurerAspect {
  3. // advice starts on line 6
  4. after() returning : beanCreation() {
  5. }
  6. protected abstract pointcut beanCreation();
  7. before() : beanCreation() {
  8. }
  9. }