Is there some tool for appying aspect to some class and generating final source into existing java source? I want my initial class
public class HelloWorld {
public static void main(String[] args) {
System.out.println("Hello world!");
}
}
would be final source
public class HelloWorld {
public static void main(String[] args) {
System.out.println("Hello world!");
System.out.println("Hello from AspectJ");
}
}
after applying this tool with next aspect
public aspect HelloFromAspectJ {
pointcut mainMethod() : execution(public static void main(String[]));
after() returning : mainMethod() {
System.out.println("Hello from AspectJ");
}
}