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