Fix javadoc to comply with JDK14
[yangtools.git] / yang / yang-data-api / src / main / java / org / opendaylight / yangtools / yang / data / api / schema / DataContainerNode.java
index c99b19b86e08f945dc2cc5ef26e2212ba8bc3613..d58126d1447abfa326aee990586ae72a1b90708a 100644 (file)
@@ -11,18 +11,17 @@ import java.util.Collection;
 import org.opendaylight.yangtools.yang.data.api.YangInstanceIdentifier.PathArgument;
 
 /**
- * Abstract node which does not have value but contains valid {@link DataContainerChild} nodes.
- * Schema of this node is described by instance of {@link org.opendaylight.yangtools.yang.model.api.DataNodeContainer}.
+ * Abstract node which does not have value but contains valid {@link DataContainerChild} nodes. Schema of this node is
+ * described by instance of {@link org.opendaylight.yangtools.yang.model.api.DataNodeContainer}.
  *
- * <p>
  * <h2>Implementation notes</h2>
  * This interface should not be implemented directly, but rather implementing one of it's subclasses
  * <ul>
- * <li>{@link ContainerNode}
- * <li>{@link MapEntryNode}
- * <li>{@link UnkeyedListEntryNode}
- * <li>{@link ChoiceNode}
- * <li>{@link AugmentationNode}
+ *   <li>{@link ContainerNode}
+ *   <li>{@link MapEntryNode}
+ *   <li>{@link UnkeyedListEntryNode}
+ *   <li>{@link ChoiceNode}
+ *   <li>{@link AugmentationNode}
  * </ul>
  *
  * @param <K> {@link PathArgument} which identifies instance of {@link DataContainerNode}
@@ -30,13 +29,12 @@ import org.opendaylight.yangtools.yang.data.api.YangInstanceIdentifier.PathArgum
 public interface DataContainerNode<K extends PathArgument> extends
         NormalizedNodeContainer<K, PathArgument, DataContainerChild<? extends PathArgument, ?>> {
     /**
-     * Returns iteration of all child nodes.
-     * Order of returned child nodes may be defined by subinterfaces.
+     * Returns iteration of all child nodes. Order of returned child nodes may be defined by subinterfaces.
      *
      * <p>
      * <b>Implementation Notes:</b>
-     * All nodes returned in this iterable, MUST also be accessible via
-     * {@link #getChild(PathArgument)} using their associated identifier.
+     * All nodes returned in this iterable, MUST also be accessible via {@link #getChild(PathArgument)} using their
+     * associated identifier.
      *
      * @return Iteration of all child nodes
      */