From dc22a8bff03dc33d4b8743548a62076e949752f8 Mon Sep 17 00:00:00 2001 From: aclement Date: Mon, 7 Nov 2005 11:12:35 +0000 Subject: [PATCH] fix for 95516 (-outxml / -outxmlfile) - from Matthew. --- ajde/testdata/OutxmlTest/outxml-to-file.lst | 5 +++++ ajde/testdata/OutxmlTest/outxml-to-outjar.lst | 5 +++++ ajde/testdata/OutxmlTest/outxmlfile-to-file.lst | 6 ++++++ ajde/testdata/OutxmlTest/outxmlfile-to-outjar.lst | 6 ++++++ ajde/testdata/OutxmlTest/src/TestAbstractAspect.aj | 3 +++ ajde/testdata/OutxmlTest/src/TestClass.java | 3 +++ ajde/testdata/OutxmlTest/src/TestConcreteAspect.aj | 3 +++ ajde/testdata/OutxmlTest/src/TestInterface.java | 3 +++ 8 files changed, 34 insertions(+) create mode 100644 ajde/testdata/OutxmlTest/outxml-to-file.lst create mode 100644 ajde/testdata/OutxmlTest/outxml-to-outjar.lst create mode 100644 ajde/testdata/OutxmlTest/outxmlfile-to-file.lst create mode 100644 ajde/testdata/OutxmlTest/outxmlfile-to-outjar.lst create mode 100644 ajde/testdata/OutxmlTest/src/TestAbstractAspect.aj create mode 100644 ajde/testdata/OutxmlTest/src/TestClass.java create mode 100644 ajde/testdata/OutxmlTest/src/TestConcreteAspect.aj create mode 100644 ajde/testdata/OutxmlTest/src/TestInterface.java 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 { + +} -- 2.39.5