Rework NormalizedNode type hierarchy
[yangtools.git] / yang / yang-data-api / src / main / java / org / opendaylight / yangtools / yang / data / api / schema / DataContainerChild.java
index c1e3844540430e9d35bfb97aeef35cfeca956af4..3d65a090a4f858b7f594751ec83b65c4ef9e475b 100644 (file)
@@ -7,29 +7,23 @@
  */
 package org.opendaylight.yangtools.yang.data.api.schema;
 
-import org.opendaylight.yangtools.yang.data.api.InstanceIdentifier.PathArgument;
-
 /**
- *
  * Marker interface for direct children of {@link DataContainerNode}.
- * 
- * <h3>Implementation notes</h3>
- * This interface should not be implemented directly, but rather using one
- * of its subinterfaces:
  *
- * <ul>
- * <li>{@link LeafNode}
- * <li>{@link ContainerNode}
- * <li>{@link ChoiceNode}
- * <li>{@link MapNode}
- * <li>{@link AugmentationNode}
- *</ul>
+ * <h2>Implementation notes</h2>
+ * This interface should not be implemented directly, but rather using one of its subinterfaces:
  *
- * @param <K> Path Argument Type which is used to identify node
- * @param <V> Value type
+ * <ul>
+ *   <li>{@link AugmentationNode}</li>
+ *   <li>{@link ChoiceNode}</li>
+ *   <li>{@link ContainerNode}</li>
+ *   <li>{@link ForeignDataNode}</li>
+ *   <li>{@link LeafNode}</li>
+ *   <li>{@link LeafSetNode}</li>
+ *   <li>{@link MapNode} and its specializations</li>
+ *   <li>{@link UnkeyedListNode}</li>
+ * </ul>
  */
-public interface DataContainerChild<K extends PathArgument,V> extends NormalizedNode<K, V> {
+public interface DataContainerChild extends NormalizedNode {
 
-    @Override
-    K getIdentifier();
 }