1 22 package org.jboss.test.aop.regression.jbaop264underscorefieldname; 23 24 import java.util.HashSet ; 25 26 import org.jboss.aop.joinpoint.FieldWriteInvocation; 27 28 33 public class TestAspect 34 { 35 public static HashSet fields = new HashSet (); 36 public Object intercept(FieldWriteInvocation invocation) throws Throwable  37 { 38 fields.add(invocation.getField().getName()); 39 return invocation.invokeNext(); 40 } 41 } 42 | Popular Tags |