Bug 3670 (part 3/5): Use of new statement parser in yang-maven-plugin
[yangtools.git] / yang / yang-parser-impl / src / main / java / org / opendaylight / yangtools / yang / parser / builder / api / DataNodeContainerBuilder.java
index d7367acab35d87a75c3a37c419bd3871fbfd5ce2..f72afed490d7495bf3a8cfb867e393522db0d314 100644 (file)
@@ -61,14 +61,15 @@ public interface DataNodeContainerBuilder extends Builder {
     /**
      * Add builder of child node to this node.
      *
-     * @param childNode
+     * @param childNode name of child node to add
      */
     void addChildNode(DataSchemaNodeBuilder childNode);
 
     /**
      * Add builder of child node to this node at specified position.
      *
-     * @param childNode
+     * @param index position at which the child node will be added
+     * @param childNode name of child node to add at specified position
      */
     void addChildNode(int index, DataSchemaNodeBuilder childNode);
 
@@ -93,7 +94,7 @@ public interface DataNodeContainerBuilder extends Builder {
     /**
      * Add builder of grouping statement to this node.
      *
-     * @param groupingBuilder
+     * @param groupingBuilder grouping statement builder
      */
     void addGrouping(GroupingBuilder groupingBuilder);
 
@@ -107,7 +108,7 @@ public interface DataNodeContainerBuilder extends Builder {
     /**
      * Add builder of uses statement to this node.
      *
-     * @param usesBuilder
+     * @param usesBuilder uses statement builder
      */
     void addUsesNode(UsesNodeBuilder usesBuilder);