Format MethodSignature javadocs 01/93001/1
authorRobert Varga <robert.varga@pantheon.tech>
Fri, 9 Oct 2020 10:10:49 +0000 (12:10 +0200)
committerRobert Varga <robert.varga@pantheon.tech>
Fri, 9 Oct 2020 10:11:14 +0000 (12:11 +0200)
This is a run-of-the-mill reformat, nothing to see.

Change-Id: I8381c15042e54178567d64b964f4d72536d5f235
Signed-off-by: Robert Varga <robert.varga@pantheon.tech>
binding/mdsal-binding-generator-api/src/main/java/org/opendaylight/mdsal/binding/model/api/MethodSignature.java

index be0e9e928362c58166ade066a638e1ba8415eb07..0f7b950009a8f402a7604e7413b7fcd919c5b2ce 100644 (file)
@@ -11,32 +11,32 @@ import java.util.List;
 import org.eclipse.jdt.annotation.NonNull;
 
 /**
- * The Method Signature interface contains simplified meta model for java method
- * definition. Each method MUST be defined by name, return type, parameters and
- * access modifier. <br>
- * Additionally method MAY contain associated annotations and comment. By
- * contract if method does not contain any comments or annotation definitions
- * the {@link #getComment()} SHOULD rather return empty string and
- * {@link #getAnnotations()} SHOULD rather return empty list than
- * <code>null</code> values. <br>
- * The defining Type contains the reference to Generated Type that declares
- * Method Signature.
+ * The Method Signature interface contains simplified meta model for java method definition. Each method MUST be defined
+ * by name, return type, parameters and access modifier. Additionally method MAY contain associated annotations and a
+ * comment. By contract if method does not contain any comments or annotation definitions the {@link #getComment()}
+ * SHOULD rather return empty string and {@link #getAnnotations()} SHOULD rather return empty list than {@code null}
+ * values.
+ *
+ * <p>
+ * The defining Type contains the reference to Generated Type that declares Method Signature.
  */
 public interface MethodSignature extends TypeMember {
     /**
-     * Returns <code>true</code> if the method signature is defined as abstract. <br>
+     * Returns {@code true} if the method signature is defined as abstract.
+     *
+     * <p>
      * By default in java all method declarations in interface are defined as abstract, but the user does not need
-     * necessarily to declare abstract keyword in front of each method. <br>
-     * The abstract methods are allowed in Class definitions but only when the class is declared as abstract.
+     * necessarily to declare abstract keyword in front of each method. The abstract methods are allowed in Class
+     * definitions but only when the class is declared as abstract.
      *
-     * @return <code>true</code> if the method signature is defined as abstract.
+     * @return {@code true} if the method signature is defined as abstract.
      */
     boolean isAbstract();
 
     /**
      * Returns {@code true} if this method is a {@code interface default} method.
      *
-     * @return <code>true</code> if the method signature is defined as default.
+     * @return {@code true} if the method signature is defined as default.
      */
     boolean isDefault();