Fix checkstyle in yang-parser-spi
[yangtools.git] / yang / yang-parser-spi / src / main / java / org / opendaylight / yangtools / yang / parser / spi / source / PrefixToModule.java
index 0298046db10dfb56dd6962860ee0dde21b5b7066..30a8a420e4c12b088ec74808e5d16d9b96da5fa9 100644 (file)
@@ -14,7 +14,7 @@ import org.opendaylight.yangtools.yang.common.QNameModule;
 import org.opendaylight.yangtools.yang.model.api.meta.IdentifierNamespace;
 
 /**
- * Source-specific mapping of prefixes to namespaces
+ * Source-specific mapping of prefixes to namespaces.
  */
 public interface PrefixToModule extends IdentifierNamespace<String, QNameModule> {
 
@@ -28,21 +28,18 @@ public interface PrefixToModule extends IdentifierNamespace<String, QNameModule>
      *            Prefix
      * @return QNameModule associated with supplied prefix, or null if prefix is
      *         not defined.
-     *
      */
     @Override
     @Nullable QNameModule get(@Nonnull String prefix);
 
     /**
-     * Returns QNameModule (namespace + revision) associated with XML namespace
-     * (URI).
+     * Returns QNameModule (namespace + revision) associated with XML namespace (URI).
      *
      * @param namespace
      *            XML Namespace
      * @return QNameModule associated with supplied namespace, or null if prefix
      *         is not defined.
      * @throws URISyntaxException if the input string is not valid URI
-     *
      */
     @Nullable QNameModule getByNamespace(String namespace) throws URISyntaxException;
 
@@ -50,7 +47,6 @@ public interface PrefixToModule extends IdentifierNamespace<String, QNameModule>
      * Pre-linkage map does not consider revision-dates of modules and it contains module namespaces only.
      *
      * @return true if it is the pre-linkage map.
-     *
      */
     boolean isPreLinkageMap();
 }