1 8 package test.performance; 9 10 import org.codehaus.aspectwerkz.joinpoint.JoinPoint; 11 12 16 public class PerClassPerformanceAspect { 17 21 public Object advice(final JoinPoint joinPoint) throws Throwable { 22 return joinPoint.proceed(); 23 } 24 25 28 public static class PerClassImpl implements PerClass { 29 public void runPerClass() { 30 } 31 } 32 } | Popular Tags |