Fix javadoc to comply with JDK14
[yangtools.git] / yang / yang-data-api / src / main / java / org / opendaylight / yangtools / yang / data / api / schema / LeafSetEntryNode.java
index 63f9127f325472a51f6be9778c2b9fed1ba40d8b..6a257f01245a2e6e54c7590abc3f6fa38b7b9536 100644 (file)
@@ -10,28 +10,20 @@ package org.opendaylight.yangtools.yang.data.api.schema;
 import org.opendaylight.yangtools.yang.data.api.YangInstanceIdentifier.NodeWithValue;
 
 /**
- * Leaf node with multiplicity 0...n.
+ * Leaf node with multiplicity 0...n. Leaf node has a value, but no child nodes in the data tree, schema for leaf node
+ * and its value is described by {@link org.opendaylight.yangtools.yang.model.api.LeafListSchemaNode}.
  *
- * <p>
- * Leaf node has a value, but no child nodes in the data tree, schema
- * for leaf node and its value is described by
- * {@link org.opendaylight.yangtools.yang.model.api.LeafListSchemaNode}.
- *
- * @param <T>
- *            Value type
+ * @param <T> Value type
  */
 public interface LeafSetEntryNode<T> extends NormalizedNode<NodeWithValue, T>, ValueNode<NodeWithValue, T> {
     /**
-     * Returns {@link NodeWithValue} which identifies this leaf set entry.
-     * Returned {@link NodeWithValue} contains same value as this node.
+     * Returns {@link NodeWithValue} which identifies this leaf set entry. Returned {@link NodeWithValue} contains same
+     * value as this node.
      *
-     * <p>
-     * <h3>Implementation notes</h3> Invocation of
-     * {@link NodeWithValue#getValue()} on returned instance of
-     * {@link NodeWithValue} must returns
-     * same value as invocation of {@link #getValue()}, such as
-     * following condition is allways met:
-     * <code>true == this.getIdentifier().getValue().equals(this.getValue())</code>
+     * <b>Implementation note</b>
+     * Invocation of {@link NodeWithValue#getValue()} on returned instance of {@link NodeWithValue} must return the
+     * same value as invocation of {@link #getValue()}, such as following condition is always met:
+     * {@code true == this.getIdentifier().getValue().equals(this.getValue())}.
      *
      * @return {@link NodeWithValue} which identifies this leaf set entry.
      */