Cleanup checkstyle in yang-{data,model}-api
[yangtools.git] / yang / yang-model-api / src / main / java / org / opendaylight / yangtools / yang / model / api / ModuleImport.java
index d352aeacbe866dc19ccf71b860d9f8b90f6df112..04330e12b9ecb5ea9872253a45659b8924fff710 100644 (file)
@@ -12,24 +12,29 @@ import org.opendaylight.yangtools.concepts.SemVer;
 
 /**
  * Interface describing YANG 'import' statement.
+ *
  * <p>
  * The import statement makes definitions from one module available inside
  * another module or submodule.
- * </p>
  */
 public interface ModuleImport extends DocumentedNode {
-
     /**
+     * Returns the name of the module to import.
+     *
      * @return Name of the module to import
      */
     String getModuleName();
 
     /**
+     * Returns the module revision to import. May be null.
+     *
      * @return Revision of module to import
      */
     Date getRevision();
 
     /**
+     * Returns the semantic version to import.
+     *
      * @return Semantic version of module to import
      */
     default SemVer getSemanticVersion() {
@@ -37,6 +42,8 @@ public interface ModuleImport extends DocumentedNode {
     }
 
     /**
+     * Returns the prefix associated with the imported module.
+     *
      * @return Prefix used to point to imported module
      */
     String getPrefix();