Yang parser refactoring.
[yangtools.git] / yang / yang-model-api / src / main / java / org / opendaylight / yangtools / yang / model / api / DataSchemaNode.java
index 892a725225c8f455059aa8ed969b8039fde909ee..6b3f4703bad31618a11eaad5573774adee47cc9b 100644 (file)
@@ -8,17 +8,17 @@
 package org.opendaylight.yangtools.yang.model.api;
 
 /**
- * 
+ *
  * Contains the method which are used for getting metadata from the schema nodes
  * which contains data.
- * 
+ *
  */
 public interface DataSchemaNode extends SchemaNode {
 
     /**
      * Returns <code>true</code> if the data node was added by augmentation,
      * otherwise returns <code>false</code>
-     * 
+     *
      * @return <code>true</code> if the data node was added by augmentation,
      *         otherwise returns <code>false</code>
      */
@@ -27,7 +27,7 @@ public interface DataSchemaNode extends SchemaNode {
     /**
      * Returns <code>true</code> if the data node was added by uses statement,
      * otherwise returns <code>false</code>
-     * 
+     *
      * @return <code>true</code> if the data node was added by uses statement,
      *         otherwise returns <code>false</code>
      */
@@ -36,7 +36,7 @@ public interface DataSchemaNode extends SchemaNode {
     /**
      * Returns <code>true</code> if the data represents configuration data,
      * otherwise returns <code>false</code>
-     * 
+     *
      * @return <code>true</code> if the data represents configuration data,
      *         otherwise returns <code>false</code>
      */
@@ -44,7 +44,7 @@ public interface DataSchemaNode extends SchemaNode {
 
     /**
      * Returns the constraints associated with Data Schema Node
-     * 
+     *
      * @return the constraints associated with Data Schema Node
      */
     ConstraintDefinition getConstraints();