瀏覽代碼

Fix for Bugzilla Bug 74279

	  	-showWeaveInfo option is not supported by iajc Ant task
tags/V1_2_1
aclement 19 年之前
父節點
當前提交
c05237fe70
共有 2 個檔案被更改,包括 17 行新增0 行删除
  1. 16
    0
      taskdefs/testdata/DoSomeWeaving.java
  2. 1
    0
      taskdefs/testdata/showweaveinfo.lst

+ 16
- 0
taskdefs/testdata/DoSomeWeaving.java 查看文件

@@ -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 查看文件

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

Loading…
取消
儲存