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.

Pr126316.aj 212B

1234567891011121314
  1. class EnumFun<E extends Enum<E>> {
  2. public E get() { return null; }
  3. }
  4. aspect SimpleAspect {
  5. Object around() : execution(* *(..)) {
  6. System.out.println("before");
  7. return proceed();
  8. }
  9. }