INT-2964 Various JavaDoc Fixes

INT-2964 - JavaDoc: <emphasis> should be <em>

INT-2964 - JavaDoc: <p/> should be <p>

INT-2964 - JavaDoc polishing

* <li></li> should be wrapped in <ul></ul>
* wrap code snippets in {@code myCode()}
* change <code>false</false> to <code>false</code>

INT-2964 - Polish - Fix more JavaDoc errors

* Mockito-all dependency causes JavaDoc error. Change dependency to Mockito-Core.
This commit is contained in:
Gunnar Hillert
2013-04-12 14:28:20 -04:00
committed by Gary Russell
parent 4c348d3785
commit 05062aa0b2
69 changed files with 369 additions and 333 deletions

View File

@@ -68,8 +68,9 @@ public class ExpressionEvaluatingSqlParameterSourceFactory extends AbstractExpre
* context: generally in an outbound setting it is a Message, and in an inbound setting it is a result set row (a
* Map or a domain object if a RowMapper has been provided). The {@link #setStaticParameters(Map) static parameters}
* can be referred to in an expression using the variable <code>#staticParameters</code>, for example:
*
* <table border="1" cellspacing="1" cellpadding="1">
* <p>
* <table>
* <caption>Parameter Expressions Samples</caption>
* <tr>
* <th><b>Key</b></th>
* <th><b>Value (Expression)</b></th>
@@ -77,20 +78,21 @@ public class ExpressionEvaluatingSqlParameterSourceFactory extends AbstractExpre
* </tr>
* <tr>
* <td>id</td>
* <td>payload.businessKey</td>
* <td>select * from items where id=:id</td>
* <td>{@code payload.businessKey}</td>
* <td>{@code select * from items where id=:id}</td>
* </tr>
* <tr>
* <td>date</td>
* <td>headers['timestamp']</td>
* <td>select * from items where created>:date</td>
* <td>{@code headers['timestamp']}</td>
* <td>{@code select * from items where created>:date}</td>
* </tr>
* <tr>
* <td>key</td>
* <td>#staticParameters['foo'].toUpperCase()</td>
* <td>select * from items where name=:key</td>
* <td>{@code #staticParameters['foo'].toUpperCase()}</td>
* <td>{@code select * from items where name=:key}</td>
* </tr>
* </pre>
* </table>
* <p>
*
* @param parameterExpressions the parameter expressions to set
*/