Cleanup checkstyle in yang-{data,model}-api
[yangtools.git] / yang / yang-model-api / src / main / java / org / opendaylight / yangtools / yang / model / api / ExtensionDefinition.java
index c65200c7e86d7bc40192ff92de74fbc31310ea1d..965ae9339fb1cb8cf51c9b5e7ac5b2b67243e23d 100644 (file)
@@ -8,13 +8,10 @@
 package org.opendaylight.yangtools.yang.model.api;
 
 /**
- * 
  * Contains the methods for getting the data which are part of the YANG
  * <code>extensoion</code> statement.
- * 
  */
 public interface ExtensionDefinition extends SchemaNode {
-
     /**
      * Returns the <code>String</code> that is the name of argument to the
      * Keyword. If no argument statement is present the method will return
@@ -22,12 +19,12 @@ public interface ExtensionDefinition extends SchemaNode {
      * The argument statement is defined in <a
      * href="https://tools.ietf.org/html/rfc6020#section-7.17.2">[RFC-6020] The
      * argument Statement</a>
-     * 
+     *
      * @return the <code>String</code> that is the name of argument to the
      *         Keyword. If no argument statement is present the method will
      *         return <code>null</code>
      */
-    public String getArgument();
+    String getArgument();
 
     /**
      * This statement indicates if the argument is mapped to an XML element in
@@ -35,16 +32,15 @@ public interface ExtensionDefinition extends SchemaNode {
      * By contract if implementation of ExtensionDefinition does not specify the
      * yin-element statement the return value is by default set to
      * <code>false</code>
-     * 
-     * <br>
-     * <br>
+     *
+     * <p>
      * For more specific definition please look into <a
      * href="https://tools.ietf.org/html/rfc6020#section-7.17.2.2">[RFC-6020]
      * The yin-element Statement</a>
-     * 
+     *
      * @return <code>true</code> if the argument is mapped to an XML element in
      *         YIN or returns <code>false</code> if the argument is mapped to an
      *         XML attribute.
      */
-    public boolean isYinElement();
+    boolean isYinElement();
 }