summaryrefslogtreecommitdiffstats
path: root/docs/adk15ProgGuideDB/ataspectj.xml
diff options
context:
space:
mode:
authoravasseur <avasseur>2005-05-20 12:27:59 +0000
committeravasseur <avasseur>2005-05-20 12:27:59 +0000
commit4f46be7c62e76950028e5e8a7214f209d6343bda (patch)
treeaeacd37126246395b7895eef10439b7950c498a6 /docs/adk15ProgGuideDB/ataspectj.xml
parent49c3978146a3e1d303a5d7f520c906acbfebe9bd (diff)
downloadaspectj-4f46be7c62e76950028e5e8a7214f209d6343bda.tar.gz
aspectj-4f46be7c62e76950028e5e8a7214f209d6343bda.zip
moved bcel things to bcel package in weaver, deow test + fix for @AJ
Diffstat (limited to 'docs/adk15ProgGuideDB/ataspectj.xml')
-rw-r--r--docs/adk15ProgGuideDB/ataspectj.xml4
1 files changed, 2 insertions, 2 deletions
diff --git a/docs/adk15ProgGuideDB/ataspectj.xml b/docs/adk15ProgGuideDB/ataspectj.xml
index b3986ef90..febf50033 100644
--- a/docs/adk15ProgGuideDB/ataspectj.xml
+++ b/docs/adk15ProgGuideDB/ataspectj.xml
@@ -323,13 +323,13 @@
System.out.println("phew");
}
- @AfterReturning(value="call(Foo+.new(..))",returning="f")
+ @AfterReturning(pointcut="call(Foo+.new(..))",returning="f")
public void itsAFoo(Foo f) {
System.out.println("It's a Foo: " + f);
}
]]></programlisting>
- <para>(Note the need for the "value=" prefix in front of the pointcut
+ <para>(Note the use of the "pointcut=" prefix in front of the pointcut
expression in the returning case).</para>
<para>After throwing advice works in a similar fashion, using the