After reading a few posts about AOP and GWT. I decided to give a try and implement my own AOP framework.
http://code.google.com/p/gwt-tiny-aop Is still in his early days. But I think is functional enough (Interception of classes is 90% functional, missing interception of interfaces). The code looks like: {{{ public class MyClass implements Interceptable { @Intercept(LoggerInterceptor.class) public int add(int a, int b) { } } }}} I would be really happy if I can get some feedback on it. All the best, -Fran -- You received this message because you are subscribed to the Google Groups "Google Web Toolkit" group. To post to this group, send email to [email protected]. To unsubscribe from this group, send email to [email protected]. For more options, visit this group at http://groups.google.com/group/google-web-toolkit?hl=en.
