资 源 简 介
Tiny AOP
Tiny AOP is an Aspect Oriented framework for GWT. The framework helps you introduce aspects in your program.
Aspect-oriented programming (AOP) is a programming paradigm which isolates secondary or supporting functions from the main program"s business logic. It aims to increase modularity by allowing the separation of cross-cutting concerns, forming a basis for aspect-oriented software development. (wikipedia)
Tutorial
See Tutorial
How it works?
Internally the framework generate a Proxy class for each Interceptable class. For the example above it looks like:
```
public class MyClasstinyaop extends MyClass {
private static final MethodDescriptor METHOD0 = new MethodDescriptor() { ... };
@Override
public void both(final java.lan