API Clarity: Documented o.o.y.yang.data.api and o.o.y.yang.data.api.schema packages.
[yangtools.git] / yang / yang-data-api / src / main / java / org / opendaylight / yangtools / yang / data / api / schema / MapNode.java
index eab5a121dee135263531de9e6546ac74f9844e83..1b916c21ff771993e0fdf9fdf10c82108e0641e8 100644 (file)
@@ -11,9 +11,12 @@ import org.opendaylight.yangtools.yang.data.api.InstanceIdentifier.NodeIdentifie
 import org.opendaylight.yangtools.yang.data.api.InstanceIdentifier.NodeIdentifierWithPredicates;
 
 /**
- * Containment node, which contains {@link MapEntryNode} of the same type.
+ * Containment node, which contains {@link MapEntryNode} of the same type, which may
+ * be quickly retrieved using key.
  *
- * This node maps to the list node in YANG schema.
+ * This node maps to the list node in YANG schema, schema and semantics of this node,
+ * its children and key construction is  defined by YANG <code>list</code>
+ * statement and its <code>key</code> and <code>ordered-by</code> substatements.
  *
  */
 public interface MapNode extends //
@@ -21,10 +24,4 @@ public interface MapNode extends //
         DataContainerChild<NodeIdentifier, Iterable<MapEntryNode>>,
         NormalizedNodeContainer<NodeIdentifier, NodeIdentifierWithPredicates, MapEntryNode> {
 
-    @Override
-    public NodeIdentifier getIdentifier();
-
-
-
-
 }