Rework NormalizedNode type hierarchy
[yangtools.git] / yang / yang-data-api / src / main / java / org / opendaylight / yangtools / yang / data / api / schema / DataContainerChild.java
index f60dc987855ecd49867eebc77d7ac5b7caa0e2e6..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}.
  *
- * Implementation notes:
- * This interface should not be implemented directly, but rather using one
- * of its subinterfaces:
- *
+ * <h2>Implementation notes</h2>
+ * This interface should not be implemented directly, but rather using one of its subinterfaces:
  *
- * {@link LeafNode}
- * {@link ContainerNode}
- * {@link ChoiceNode}
- * {@link MapNode}
- * {@link AugmentationNode}
- *
- * @param <K>
- * @param <V>
+ * <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> {
-
-    @Override
-    public K getIdentifier();
+public interface DataContainerChild extends NormalizedNode {
 
 }