SPR-7832
+ expose the invocation params through the cache root object
+ update javadocs
This commit is contained in:
Costin Leau
2011-03-28 11:36:05 +00:00
parent a20e73b148
commit eb4b68ffda
9 changed files with 125 additions and 10 deletions

View File

@@ -176,6 +176,30 @@ public Book findBook(String name)]]></programlisting>
<entry>The name of the method being invoked</entry>
<entry><screen>#root.methodName</screen></entry>
</row>
<row>
<entry>method</entry>
<entry>root object</entry>
<entry>The method being invoked</entry>
<entry><screen>#root.method.name</screen></entry>
</row>
<row>
<entry>target</entry>
<entry>root object</entry>
<entry>The target object being invoked</entry>
<entry><screen>#root.target</screen></entry>
</row>
<row>
<entry>targetClass</entry>
<entry>root object</entry>
<entry>The class of the target being invoked</entry>
<entry><screen>#root.targetClass</screen></entry>
</row>
<row>
<entry>params</entry>
<entry>root object</entry>
<entry>The arguments (as array) used for invoking the target</entry>
<entry><screen>#root.params[0]</screen></entry>
</row>
<row>
<entry>caches</entry>
<entry>root object</entry>