Tools
liteaop.txt
Associated article: Lightweight Aspect-Oriented Programming
Tags: Tools
Published source code accompanying the article by Michael J. Yuan and Norman Richards in which they examine Aspect-Oriented Programming and backward- compatible approaches to code reuse that protect investments in existing software. Also see LITEAOP.ZIP.
Lightweight Aspect-Oriented Programming
by Michael J. Yuan and Norman Richards
Listing One
package Beans;
public class EchoBean implements EchoBeanIface {
private String _message;
public EchoBean () {
_message = "not initialized";
}
public String getMessage() {
return _message;
}
public void setMessage(String message) {
_message = ...


