diff options
author | aclement <aclement> | 2007-01-15 08:45:27 +0000 |
---|---|---|
committer | aclement <aclement> | 2007-01-15 08:45:27 +0000 |
commit | 4820dcea42b8379dc40ce157ca09d2740313309d (patch) | |
tree | 30f87ad0dad1b06d6cf075d960ae4a3833514f30 /ajde/testdata | |
parent | a03aa0cd334806004c0b8060058e40704da9adab (diff) | |
download | aspectj-4820dcea42b8379dc40ce157ca09d2740313309d.tar.gz aspectj-4820dcea42b8379dc40ce157ca09d2740313309d.zip |
148190#32
Diffstat (limited to 'ajde/testdata')
-rw-r--r-- | ajde/testdata/BuildCancelling/.cvsignore | 1 | ||||
-rw-r--r-- | ajde/testdata/BuildCancelling/A1.aj | 9 | ||||
-rw-r--r-- | ajde/testdata/BuildCancelling/A2.aj | 9 | ||||
-rw-r--r-- | ajde/testdata/BuildCancelling/A3.aj | 9 | ||||
-rw-r--r-- | ajde/testdata/BuildCancelling/A4.aj | 9 | ||||
-rw-r--r-- | ajde/testdata/BuildCancelling/Cl1.java | 4 | ||||
-rw-r--r-- | ajde/testdata/BuildCancelling/Cl2.java | 4 | ||||
-rw-r--r-- | ajde/testdata/BuildCancelling/Cl3.java | 4 | ||||
-rw-r--r-- | ajde/testdata/BuildCancelling/EvenMoreCode.lst | 10 | ||||
-rw-r--r-- | ajde/testdata/BuildCancelling/HW.java | 13 | ||||
-rw-r--r-- | ajde/testdata/BuildCancelling/LoadsaCode.lst | 7 |
11 files changed, 0 insertions, 79 deletions
diff --git a/ajde/testdata/BuildCancelling/.cvsignore b/ajde/testdata/BuildCancelling/.cvsignore deleted file mode 100644 index ba077a403..000000000 --- a/ajde/testdata/BuildCancelling/.cvsignore +++ /dev/null @@ -1 +0,0 @@ -bin diff --git a/ajde/testdata/BuildCancelling/A1.aj b/ajde/testdata/BuildCancelling/A1.aj deleted file mode 100644 index 1245cfff1..000000000 --- a/ajde/testdata/BuildCancelling/A1.aj +++ /dev/null @@ -1,9 +0,0 @@ -
-public aspect A1 {
-
- pointcut m1(): execution(* main(..));
-
- before(): m1() {
- System.err.println("Before main runs");
- }
-}
\ No newline at end of file diff --git a/ajde/testdata/BuildCancelling/A2.aj b/ajde/testdata/BuildCancelling/A2.aj deleted file mode 100644 index 4a2ee8189..000000000 --- a/ajde/testdata/BuildCancelling/A2.aj +++ /dev/null @@ -1,9 +0,0 @@ -
-public aspect A2 {
-
- pointcut m1(): execution(* main(..));
-
- after(): m1() {
- System.err.println("After main runs");
- }
-}
diff --git a/ajde/testdata/BuildCancelling/A3.aj b/ajde/testdata/BuildCancelling/A3.aj deleted file mode 100644 index d9f7a6888..000000000 --- a/ajde/testdata/BuildCancelling/A3.aj +++ /dev/null @@ -1,9 +0,0 @@ -
-public aspect A3 {
-
- pointcut m1(): call(* *print*(..));
-
- before(): m1() {
- System.err.println("Calling print");
- }
-}
\ No newline at end of file diff --git a/ajde/testdata/BuildCancelling/A4.aj b/ajde/testdata/BuildCancelling/A4.aj deleted file mode 100644 index 5c475d4f2..000000000 --- a/ajde/testdata/BuildCancelling/A4.aj +++ /dev/null @@ -1,9 +0,0 @@ -
-public aspect A4 {
-
- pointcut m1(): call(* *print*(..));
-
- after(): m1() {
- System.err.println("After call to print");
- }
-}
\ No newline at end of file diff --git a/ajde/testdata/BuildCancelling/Cl1.java b/ajde/testdata/BuildCancelling/Cl1.java deleted file mode 100644 index 7652142c6..000000000 --- a/ajde/testdata/BuildCancelling/Cl1.java +++ /dev/null @@ -1,4 +0,0 @@ -public class Cl1 { - public static void main(String[] args) { - } -}
\ No newline at end of file diff --git a/ajde/testdata/BuildCancelling/Cl2.java b/ajde/testdata/BuildCancelling/Cl2.java deleted file mode 100644 index 8ba3e49ed..000000000 --- a/ajde/testdata/BuildCancelling/Cl2.java +++ /dev/null @@ -1,4 +0,0 @@ -public class Cl2 { - public static void main(String[] args) { - } -}
\ No newline at end of file diff --git a/ajde/testdata/BuildCancelling/Cl3.java b/ajde/testdata/BuildCancelling/Cl3.java deleted file mode 100644 index 0b3b301df..000000000 --- a/ajde/testdata/BuildCancelling/Cl3.java +++ /dev/null @@ -1,4 +0,0 @@ -public class Cl3 { - public static void callPrint(String s) { - } -}
\ No newline at end of file diff --git a/ajde/testdata/BuildCancelling/EvenMoreCode.lst b/ajde/testdata/BuildCancelling/EvenMoreCode.lst deleted file mode 100644 index cfd1cee3e..000000000 --- a/ajde/testdata/BuildCancelling/EvenMoreCode.lst +++ /dev/null @@ -1,10 +0,0 @@ -A1.aj
-Cl1.java
-A2.aj
-Cl2.java
-HW.java
-A3.aj
-Cl3.java
-A4.aj
--verbose
--noExit
diff --git a/ajde/testdata/BuildCancelling/HW.java b/ajde/testdata/BuildCancelling/HW.java deleted file mode 100644 index 3f8aaf831..000000000 --- a/ajde/testdata/BuildCancelling/HW.java +++ /dev/null @@ -1,13 +0,0 @@ - -public class HW { - public static void main(String[] args) { - callPrint("Hello"); - callPrint(" "); - callPrint("World"); - callPrint("\n"); - } - - public static void callPrint(String s) { - System.out.print(s); - } -}
\ No newline at end of file diff --git a/ajde/testdata/BuildCancelling/LoadsaCode.lst b/ajde/testdata/BuildCancelling/LoadsaCode.lst deleted file mode 100644 index e313f343d..000000000 --- a/ajde/testdata/BuildCancelling/LoadsaCode.lst +++ /dev/null @@ -1,7 +0,0 @@ -A1.aj
-A2.aj
-HW.java
-A3.aj
-A4.aj
--verbose
--noExit
|