Expose EffectiveModuleStatement prefix mapping
[yangtools.git] / yang / yang-model-api / src / main / java / org / opendaylight / yangtools / yang / model / api / meta / IdentifierNamespace.java
index f06850b27b0d55c05e6f178021a46e747634b95c..c6179847629a6ffe07b20b18ba0b57674c689583 100644 (file)
@@ -13,17 +13,15 @@ import javax.annotation.Nullable;
 /**
  * Model specific namespace which allows access to specific
  *
- * {@link IdentifierNamespace} serves as common superclass for YANG model
- * namespaces, which are type-captured subclasses. This type capture
- * of namespace allows for handy type-safe reading methods
- * such as {@link EffectiveStatement#get(Class, Object)} and still
- * allows introduction of new namespaces without need to change
+ * {@link IdentifierNamespace} serves as common superclass for YANG model namespaces, which are type-captured
+ * subclasses. This type capture of namespace allows for handy type-safe reading methods such as
+ * {@link EffectiveStatement#get(Class, Object)} and still allows introduction of new namespaces without need to change
  * model APIs.
  *
  * @param <K> Identifier type
  * @param <V> Value type
  */
-public interface IdentifierNamespace<K,V> {
+public interface IdentifierNamespace<K, V> {
     /**
      * Returns value associated with supplied identifier.
      *