Cleanup checkstyle in yang-{data,model}-api
[yangtools.git] / yang / yang-model-api / src / main / java / org / opendaylight / yangtools / yang / model / api / DataNodeContainer.java
index 872a66ea6b66b6cc77795d848dff5fe651812a4f..d07be7d64d8586a0cd3f8fd5c7af7f4aa0f5b262 100644 (file)
@@ -40,14 +40,18 @@ public interface DataNodeContainer {
     Set<GroupingDefinition> getGroupings();
 
     /**
+     * Returns the child node corresponding to the specified name.
+     *
      * @param name
-     *            QName of seeked child
+     *            QName of child
      * @return child node of this DataNodeContainer if child with given name is
      *         present, null otherwise
      */
     DataSchemaNode getDataChildByName(QName name);
 
     /**
+     * Returns grouping nodes used ny this container.
+     *
      * @return Set of all uses nodes defined within this DataNodeContainer
      */
     Set<UsesNode> getUses();