diff options
author | aclement <aclement> | 2005-11-07 11:12:35 +0000 |
---|---|---|
committer | aclement <aclement> | 2005-11-07 11:12:35 +0000 |
commit | dc22a8bff03dc33d4b8743548a62076e949752f8 (patch) | |
tree | bab954304d66d3949bfa0adbae03b9acf9006c28 /ajde | |
parent | d53fe2aeac3c48998da570516a3d3810fb3a40fe (diff) | |
download | aspectj-dc22a8bff03dc33d4b8743548a62076e949752f8.tar.gz aspectj-dc22a8bff03dc33d4b8743548a62076e949752f8.zip |
fix for 95516 (-outxml / -outxmlfile) - from Matthew.
Diffstat (limited to 'ajde')
-rw-r--r-- | ajde/testdata/OutxmlTest/outxml-to-file.lst | 5 | ||||
-rw-r--r-- | ajde/testdata/OutxmlTest/outxml-to-outjar.lst | 5 | ||||
-rw-r--r-- | ajde/testdata/OutxmlTest/outxmlfile-to-file.lst | 6 | ||||
-rw-r--r-- | ajde/testdata/OutxmlTest/outxmlfile-to-outjar.lst | 6 | ||||
-rw-r--r-- | ajde/testdata/OutxmlTest/src/TestAbstractAspect.aj | 3 | ||||
-rw-r--r-- | ajde/testdata/OutxmlTest/src/TestClass.java | 3 | ||||
-rw-r--r-- | ajde/testdata/OutxmlTest/src/TestConcreteAspect.aj | 3 | ||||
-rw-r--r-- | ajde/testdata/OutxmlTest/src/TestInterface.java | 3 |
8 files changed, 34 insertions, 0 deletions
diff --git a/ajde/testdata/OutxmlTest/outxml-to-file.lst b/ajde/testdata/OutxmlTest/outxml-to-file.lst new file mode 100644 index 000000000..596118fab --- /dev/null +++ b/ajde/testdata/OutxmlTest/outxml-to-file.lst @@ -0,0 +1,5 @@ +src/TestClass.java +src/TestInterface.java +src/TestAbstractAspect.aj +src/TestConcreteAspect.aj +-outxml diff --git a/ajde/testdata/OutxmlTest/outxml-to-outjar.lst b/ajde/testdata/OutxmlTest/outxml-to-outjar.lst new file mode 100644 index 000000000..596118fab --- /dev/null +++ b/ajde/testdata/OutxmlTest/outxml-to-outjar.lst @@ -0,0 +1,5 @@ +src/TestClass.java +src/TestInterface.java +src/TestAbstractAspect.aj +src/TestConcreteAspect.aj +-outxml diff --git a/ajde/testdata/OutxmlTest/outxmlfile-to-file.lst b/ajde/testdata/OutxmlTest/outxmlfile-to-file.lst new file mode 100644 index 000000000..e29e8220f --- /dev/null +++ b/ajde/testdata/OutxmlTest/outxmlfile-to-file.lst @@ -0,0 +1,6 @@ +src/TestClass.java +src/TestInterface.java +src/TestAbstractAspect.aj +src/TestConcreteAspect.aj +-outxmlfile +custom/aop.xml diff --git a/ajde/testdata/OutxmlTest/outxmlfile-to-outjar.lst b/ajde/testdata/OutxmlTest/outxmlfile-to-outjar.lst new file mode 100644 index 000000000..e29e8220f --- /dev/null +++ b/ajde/testdata/OutxmlTest/outxmlfile-to-outjar.lst @@ -0,0 +1,6 @@ +src/TestClass.java +src/TestInterface.java +src/TestAbstractAspect.aj +src/TestConcreteAspect.aj +-outxmlfile +custom/aop.xml diff --git a/ajde/testdata/OutxmlTest/src/TestAbstractAspect.aj b/ajde/testdata/OutxmlTest/src/TestAbstractAspect.aj new file mode 100644 index 000000000..df7596863 --- /dev/null +++ b/ajde/testdata/OutxmlTest/src/TestAbstractAspect.aj @@ -0,0 +1,3 @@ +public abstract aspect TestAbstractAspect { + +} diff --git a/ajde/testdata/OutxmlTest/src/TestClass.java b/ajde/testdata/OutxmlTest/src/TestClass.java new file mode 100644 index 000000000..38bf5906b --- /dev/null +++ b/ajde/testdata/OutxmlTest/src/TestClass.java @@ -0,0 +1,3 @@ +public class TestClass { + +} diff --git a/ajde/testdata/OutxmlTest/src/TestConcreteAspect.aj b/ajde/testdata/OutxmlTest/src/TestConcreteAspect.aj new file mode 100644 index 000000000..deb065e02 --- /dev/null +++ b/ajde/testdata/OutxmlTest/src/TestConcreteAspect.aj @@ -0,0 +1,3 @@ +public aspect TestConcreteAspect { + +} diff --git a/ajde/testdata/OutxmlTest/src/TestInterface.java b/ajde/testdata/OutxmlTest/src/TestInterface.java new file mode 100644 index 000000000..86d3ce968 --- /dev/null +++ b/ajde/testdata/OutxmlTest/src/TestInterface.java @@ -0,0 +1,3 @@ +public interface TestInterface { + +} |