1 22 package org.jboss.test.aop.annotated; 23 24 import org.jboss.aop.joinpoint.Invocation; 25 import org.jboss.aop.pointcut.Typedef; 26 27 33 public class TypedefAspect 34 { 35 public static boolean intercepted; 36 39 public static Typedef myTypedef; 40 41 44 public Object typedefAdvice(Invocation invocation) throws Throwable  45 { 46 intercepted = true; 47 return invocation.invokeNext(); 48 } 49 50 } 51 | Popular Tags |