Fixed tests. Added javadocs to yang-model-api.
[controller.git] / opendaylight / sal / yang-prototype / yang / yang-model-api / src / main / java / org / opendaylight / controller / yang / model / api / ContainerSchemaNode.java
index 62df36e28d63f123fda47a7ab541328d6d227cd9..f60fc160d8bea95ba16a61873a53379939a200f7 100644 (file)
@@ -7,9 +7,19 @@
  */\r
 package org.opendaylight.controller.yang.model.api;\r
 \r
+/**\r
+ * The ContainerSchemaNode is used to define an interior data node in the schema\r
+ * tree. There are two styles of containers, those that exist only for\r
+ * organizing the hierarchy of data nodes, and those whose presence in the\r
+ * configuration has an explicit meaning.\r
+ */\r
 public interface ContainerSchemaNode extends DataNodeContainer,\r
         AugmentationTarget, DataSchemaNode {\r
 \r
+    /**\r
+     * @return true, if presence of this container has an explicit meaning,\r
+     *         false otherwise\r
+     */\r
     boolean isPresenceContainer();\r
 \r
 }\r