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.

DummyAspect.java 124B

123456
  1. public abstract aspect DummyAspect {
  2. public abstract pointcut traced(Object o);
  3. before (Object exc): traced(exc) {
  4. }
  5. }