Merge "BUG-1436: deprecate IntermediateMapping"
[yangtools.git] / yang / yang-model-api / src / main / java / org / opendaylight / yangtools / yang / model / api / DataSchemaNode.java
index 892a725225c8f455059aa8ed969b8039fde909ee..ab8ae21cafd9010502fd3496ff6e5bb4b5763152 100644 (file)
@@ -8,17 +8,29 @@
 package org.opendaylight.yangtools.yang.model.api;
 
 /**
- * 
+ *
+ * Data Schema Node represents abstract supertype from which all data tree
+ * definitions are derived.
+ *
  * Contains the method which are used for getting metadata from the schema nodes
  * which contains data.
- * 
+ *
+ * @see ContainerSchemaNode
+ * @see ListSchemaNode
+ * @see LeafListSchemaNode
+ * @see ChoiceNode
+ * @see ChoiceCaseNode
+ * @see LeafSchemaNode
+ * @see AnyXmlSchemaNode
+ *
+ *
  */
 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 +39,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 +48,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 +56,7 @@ public interface DataSchemaNode extends SchemaNode {
 
     /**
      * Returns the constraints associated with Data Schema Node
-     * 
+     *
      * @return the constraints associated with Data Schema Node
      */
     ConstraintDefinition getConstraints();