| package ${PACKAGE_NAME}; | |
| import java.lang.reflect.Method; | |
| import org.qi4j.api.concern.GenericConcern; | |
| #parse("File Header.java") | |
| public class ${NAME} extends GenericConcern | |
| { | |
| public Object invoke( Object proxy, Method method, Object[]args ) | |
| throws Throwable | |
| { | |
| // TODO | |
| return next.invoke(proxy,method,args); | |
| } | |
| } |