JVM Languages
aop.txt
Associated article: Aspect-Oriented Programming in ASPECTJ
Tags: JVM Languages
Published source code accompanying the article by William Grosso in which he examines aspect- oriented programming which extends the object-oriented paradigm by letting you write more maintainable code using "aspects." Also see AOP.ZIP.
Aspect-Oriented Programming & AspectJ
by William Grosso
Listing One
/* Pulls out calls to any public method that throws a RemoteException */
pointcut example1(): call(public * * (..) throws RemoteException);
/* Pulls out calls to a constructor of any subclass of UnicastRemoteObject.
The '+' ...


