org.aspectj/taskdefs/testdata/DoSomeWeaving.java
aclement c05237fe70 Fix for Bugzilla Bug 74279
-showWeaveInfo option is not supported by iajc Ant task
2004-10-01 07:19:14 +00:00

17 lines
279 B
Java

class DoSomeWeaving {
public static void main(String[] argv) {
new DoSomeWeaving().sayHi();
}
public void sayHi() {
System.err.println("hi");
}
}
aspect A1 {
before(): call(* *(..)) && !within(A1) {
System.err.println("Just about to make a call");
}
}