diff options
author | Andy Clement <aclement@vmware.com> | 2012-03-19 14:06:19 -0700 |
---|---|---|
committer | Andy Clement <aclement@vmware.com> | 2012-03-19 14:06:19 -0700 |
commit | 5408b2446e12432486800cf5a35795ab8d942de3 (patch) | |
tree | be7ae5be53dc455e8581ed3b8de3dc65df272685 /tests/indy/four/Asp.java | |
parent | afae1fc59a4d857b1e19f282b7a38fe061afe738 (diff) | |
download | aspectj-5408b2446e12432486800cf5a35795ab8d942de3.tar.gz aspectj-5408b2446e12432486800cf5a35795ab8d942de3.zip |
additional test to show all joinpoints in code using indy
Diffstat (limited to 'tests/indy/four/Asp.java')
-rw-r--r-- | tests/indy/four/Asp.java | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/tests/indy/four/Asp.java b/tests/indy/four/Asp.java new file mode 100644 index 000000000..78f86a302 --- /dev/null +++ b/tests/indy/four/Asp.java @@ -0,0 +1,6 @@ +aspect Aspect { + + before(): within(Code1) { + System.out.println(thisJoinPointStaticPart); + } +} |