diff options
author | aclement <aclement> | 2006-10-23 12:49:11 +0000 |
---|---|---|
committer | aclement <aclement> | 2006-10-23 12:49:11 +0000 |
commit | 70dda814951a9cf2f79e958b2bd93f66f390b6da (patch) | |
tree | a440fce9ef278cc2bf3b32272622d62b9d371dce /ajdoc/testdata/pr148906 | |
parent | 757004ca6702a97369aac2ba62532f13ac5ced36 (diff) | |
download | aspectj-70dda814951a9cf2f79e958b2bd93f66f390b6da.tar.gz aspectj-70dda814951a9cf2f79e958b2bd93f66f390b6da.zip |
tests and fixes for 148906: Support -Xlintfile for ajdoc
Diffstat (limited to 'ajdoc/testdata/pr148906')
-rw-r--r-- | ajdoc/testdata/pr148906/AdviceDidNotMatch.aj | 6 | ||||
-rw-r--r-- | ajdoc/testdata/pr148906/C.java | 6 | ||||
-rw-r--r-- | ajdoc/testdata/pr148906/README.txt | 3 | ||||
-rw-r--r-- | ajdoc/testdata/pr148906/Xlint.properties | 1 | ||||
-rw-r--r-- | ajdoc/testdata/pr148906/simple.jar | bin | 0 -> 1171 bytes |
5 files changed, 16 insertions, 0 deletions
diff --git a/ajdoc/testdata/pr148906/AdviceDidNotMatch.aj b/ajdoc/testdata/pr148906/AdviceDidNotMatch.aj new file mode 100644 index 000000000..79d540c96 --- /dev/null +++ b/ajdoc/testdata/pr148906/AdviceDidNotMatch.aj @@ -0,0 +1,6 @@ +public aspect AdviceDidNotMatch { + + before() : execution(* *.*(..)) { + } + +} diff --git a/ajdoc/testdata/pr148906/C.java b/ajdoc/testdata/pr148906/C.java new file mode 100644 index 000000000..7602c1f03 --- /dev/null +++ b/ajdoc/testdata/pr148906/C.java @@ -0,0 +1,6 @@ +public class C { + + public void foo() { + } + +} diff --git a/ajdoc/testdata/pr148906/README.txt b/ajdoc/testdata/pr148906/README.txt new file mode 100644 index 000000000..8c6e818a2 --- /dev/null +++ b/ajdoc/testdata/pr148906/README.txt @@ -0,0 +1,3 @@ +to regenerate the jar files contained in this project: + +1. ajc AdviceDidNotMatch.aj -outjar simple.jar diff --git a/ajdoc/testdata/pr148906/Xlint.properties b/ajdoc/testdata/pr148906/Xlint.properties new file mode 100644 index 000000000..dad74d9ec --- /dev/null +++ b/ajdoc/testdata/pr148906/Xlint.properties @@ -0,0 +1 @@ +adviceDidNotMatch=error diff --git a/ajdoc/testdata/pr148906/simple.jar b/ajdoc/testdata/pr148906/simple.jar Binary files differnew file mode 100644 index 000000000..d951bbccd --- /dev/null +++ b/ajdoc/testdata/pr148906/simple.jar |