Cleanup yang.model.api.meta
[yangtools.git] / yang / yang-model-api / src / main / java / org / opendaylight / yangtools / yang / model / api / meta / StatementSource.java
index 315202fc0599a34d03237f67731a6f6f9e6d07ee..88a42db1538b1964f9229d519209d27bd447d2d3 100644 (file)
@@ -6,33 +6,28 @@
  * and is available at http://www.eclipse.org/legal/epl-v10.html
  */
 package org.opendaylight.yangtools.yang.model.api.meta;
+
 /**
- *
  * Origin of statement
  *
  * Represents origin of statement - if it was explicitly present
  * in model representation or if it was inferred from context.
- *
  */
 public enum StatementSource {
 
     /**
-     *
      * Statement was explicitly declared by author
      * of the supplied model.
-     *
      */
     DECLARATION,
+
     /**
-     *
      * Statement was derived from context of YANG model / statement
      * and represents effective model.
      *
      * Effective context nodes are derived from applicable {@link #DECLARATION}
      * statements by interpreting their semantic meaning in context
      * of current statement.
-     *
      */
     CONTEXT
-
 }