aboutsummaryrefslogtreecommitdiffstats
path: root/ajde/testdata/bug-40943
diff options
context:
space:
mode:
authormkersten <mkersten>2003-08-06 21:17:57 +0000
committermkersten <mkersten>2003-08-06 21:17:57 +0000
commit5edccbfaeb8bb4dc5b34d553267365ae3c7eda41 (patch)
tree7fe52f8582e5a0240443801f2003b09117b419de /ajde/testdata/bug-40943
parent3b729301c726c44f028906ec53e518e2d3081e83 (diff)
downloadaspectj-5edccbfaeb8bb4dc5b34d553267365ae3c7eda41.tar.gz
aspectj-5edccbfaeb8bb4dc5b34d553267365ae3c7eda41.zip
Fixed bugs:
40943: Binary weaving should copy non-Java resources from "-inja... 36071: 1.1 rc1 should copy resources similar to java compiler 40826: ajbrowser does not report errors properly 40774: task list icons don't show in ajbrowser
Diffstat (limited to 'ajde/testdata/bug-40943')
-rw-r--r--ajde/testdata/bug-40943/aspects/Logging.java27
-rw-r--r--ajde/testdata/bug-40943/input1.jarbin0 -> 1471 bytes
-rw-r--r--ajde/testdata/bug-40943/input2.jarbin0 -> 1471 bytes
-rw-r--r--ajde/testdata/bug-40943/output.jarbin0 -> 3318 bytes
4 files changed, 27 insertions, 0 deletions
diff --git a/ajde/testdata/bug-40943/aspects/Logging.java b/ajde/testdata/bug-40943/aspects/Logging.java
new file mode 100644
index 000000000..2e8ba485a
--- /dev/null
+++ b/ajde/testdata/bug-40943/aspects/Logging.java
@@ -0,0 +1,27 @@
+/*
+ * Created on 30-Jul-03
+ *
+ * To change this generated comment go to
+ * Window>Preferences>Java>Code Generation>Code and Comments
+ */
+package aspects;
+
+/**
+ * @author websterm
+ *
+ * To change this generated comment go to
+ * Window>Preferences>Java>Code Generation>Code and Comments
+ */
+public aspect Logging {
+
+ pointcut methods () :
+ execution(* *..*(..)) && !within(Logging);
+
+ before () : methods () {
+ System.err.println("> " + thisJoinPoint.getSignature().toLongString());
+ }
+
+ after () : methods () {
+ System.err.println("< " + thisJoinPoint.getSignature().toLongString());
+ }
+}
diff --git a/ajde/testdata/bug-40943/input1.jar b/ajde/testdata/bug-40943/input1.jar
new file mode 100644
index 000000000..c6305aa57
--- /dev/null
+++ b/ajde/testdata/bug-40943/input1.jar
Binary files differ
diff --git a/ajde/testdata/bug-40943/input2.jar b/ajde/testdata/bug-40943/input2.jar
new file mode 100644
index 000000000..c6305aa57
--- /dev/null
+++ b/ajde/testdata/bug-40943/input2.jar
Binary files differ
diff --git a/ajde/testdata/bug-40943/output.jar b/ajde/testdata/bug-40943/output.jar
new file mode 100644
index 000000000..a5f38e68e
--- /dev/null
+++ b/ajde/testdata/bug-40943/output.jar
Binary files differ