Bump upstreams
[mdsal.git] / binding / mdsal-binding-java-api-generator / src / main / java / org / opendaylight / mdsal / binding / java / api / generator / JavaFileTemplate.java
index 563b44dbe74b2d5525b112d644ed9d36c8d6efba..9ea277891fe5db48ad753d936a22b2fe10691df9 100644 (file)
@@ -401,11 +401,11 @@ class JavaFileTemplate {
      * @param method method signature from which is the method name and return type obtained
      * @return generated property instance for the getter <code>method</code>
      * @throws IllegalArgumentException <ul>
-     *  <li>if the <code>method</code> equals <code>null</code></li>
-     *  <li>if the name of the <code>method</code> equals <code>null</code></li>
-     *  <li>if the name of the <code>method</code> is empty</li>
-     *  <li>if the return type of the <code>method</code> equals <code>null</code></li>
-     * </ul>
+     *                                    <li>if the {@code method} equals {@code null}</li>
+     *                                    <li>if the name of the {@code method} equals {@code null}</li>
+     *                                    <li>if the name of the {@code method} is empty</li>
+     *                                    <li>if the return type of the {@code method} equals {@code null}</li>
+     *                                  </ul>
      */
     private static BuilderGeneratedProperty propertyFromGetter(final MethodSignature method) {
         checkArgument(method != null);