Przeglądaj źródła

Fix for Bugzilla Bug 74279

	  	-showWeaveInfo option is not supported by iajc Ant task
tags/V1_2_1
aclement 19 lat temu
rodzic
commit
c05237fe70

+ 16
- 0
taskdefs/testdata/DoSomeWeaving.java Wyświetl plik

@@ -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 Wyświetl plik

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

Ładowanie…
Anuluj
Zapisz