Push FIXMEs out
[yangtools.git] / yang / yang-data-api / src / main / java / org / opendaylight / yangtools / yang / data / api / schema / DataContainerChild.java
index f0520eed9bde3ecf1f550416e601fe1d30f987f6..fb1d803c668a0f5afa4861e6847b849ffe799ce3 100644 (file)
@@ -7,25 +7,24 @@
  */
 package org.opendaylight.yangtools.yang.data.api.schema;
 
-import org.opendaylight.yangtools.yang.data.api.InstanceIdentifier.PathArgument;
+import org.opendaylight.yangtools.yang.data.api.YangInstanceIdentifier.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}
+ * <ul>
+ *   <li>{@link LeafNode}
+ *   <li>{@link ContainerNode}
+ *   <li>{@link ChoiceNode}
+ *   <li>{@link MapNode}
+ *   <li>{@link AugmentationNode}
+ * </ul>
  *
- * @param <K>
- * @param <V>
+ * @param <K> Path Argument Type which is used to identify node
+ * @param <V> Value type
  */
 public interface DataContainerChild<K extends PathArgument,V> extends NormalizedNode<K, V> {
     @Override