Browse Source

Fix for Bugzilla Bug 74279

	  	-showWeaveInfo option is not supported by iajc Ant task
tags/V1_2_1
aclement 19 years ago
parent
commit
c05237fe70
2 changed files with 17 additions and 0 deletions
  1. 16
    0
      taskdefs/testdata/DoSomeWeaving.java
  2. 1
    0
      taskdefs/testdata/showweaveinfo.lst

+ 16
- 0
taskdefs/testdata/DoSomeWeaving.java View File

@@ -0,0 +1,16 @@
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");
}
}

+ 1
- 0
taskdefs/testdata/showweaveinfo.lst View File

@@ -0,0 +1 @@
DoSomeWeaving.java

Loading…
Cancel
Save