diff options
author | mkersten <mkersten> | 2003-08-06 21:17:57 +0000 |
---|---|---|
committer | mkersten <mkersten> | 2003-08-06 21:17:57 +0000 |
commit | 5edccbfaeb8bb4dc5b34d553267365ae3c7eda41 (patch) | |
tree | 7fe52f8582e5a0240443801f2003b09117b419de /ajde/testdata/bug-40943 | |
parent | 3b729301c726c44f028906ec53e518e2d3081e83 (diff) | |
download | aspectj-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.java | 27 | ||||
-rw-r--r-- | ajde/testdata/bug-40943/input1.jar | bin | 0 -> 1471 bytes | |||
-rw-r--r-- | ajde/testdata/bug-40943/input2.jar | bin | 0 -> 1471 bytes | |||
-rw-r--r-- | ajde/testdata/bug-40943/output.jar | bin | 0 -> 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 Binary files differnew file mode 100644 index 000000000..c6305aa57 --- /dev/null +++ b/ajde/testdata/bug-40943/input1.jar diff --git a/ajde/testdata/bug-40943/input2.jar b/ajde/testdata/bug-40943/input2.jar Binary files differnew file mode 100644 index 000000000..c6305aa57 --- /dev/null +++ b/ajde/testdata/bug-40943/input2.jar diff --git a/ajde/testdata/bug-40943/output.jar b/ajde/testdata/bug-40943/output.jar Binary files differnew file mode 100644 index 000000000..a5f38e68e --- /dev/null +++ b/ajde/testdata/bug-40943/output.jar |