Enable checkstyle in yang-model-util
[yangtools.git] / yang / yang-model-util / src / main / java / org / opendaylight / yangtools / yang / model / util / AbstractSchemaContext.java
index aabe4817245c473ce8098968cfe23df443f4aef4..87c112b50066087860cf8fab1b0a3806abace2f5 100644 (file)
@@ -53,16 +53,22 @@ public abstract class AbstractSchemaContext implements SchemaContext {
     protected static final Supplier<TreeSet<Module>> MODULE_SET_SUPPLIER = () -> new TreeSet<>(REVISION_COMPARATOR);
 
     /**
+     * Returns the ModuleIdentifier-to-YANG source mapping.
+     *
      * @return yang sources where key is ModuleIdentifier
      */
     protected abstract Map<ModuleIdentifier, String> getIdentifiersToSources();
 
     /**
+     * Returns the namespace-to-module mapping.
+     *
      * @return Map of modules where key is namespace
      */
     protected abstract SetMultimap<URI, Module> getNamespaceToModules();
 
     /**
+     * Returns the module name-to-module mapping.
+     *
      * @return Map of modules where key is name of module
      */
     protected abstract SetMultimap<String, Module> getNameToModules();