Fix javadoc to comply with JDK14
[yangtools.git] / yang / yang-data-api / src / main / java / org / opendaylight / yangtools / yang / data / api / schema / ValueNode.java
index eb70bfaa987791827d53bba969a06dda178eeebd..1556d8bbec315ecd61ef3b3d3be1e378545ba05a 100644 (file)
@@ -12,8 +12,6 @@ import org.opendaylight.yangtools.yang.data.api.YangInstanceIdentifier.PathArgum
 /**
  * Interface holding the common trait of {@link LeafSetEntryNode} and {@link LeafNode}, which both hold a value.
  *
- * @author Robert Varga
- *
  * @param <K> Local identifier of node
  * @param <V> Value of node
  */
@@ -21,13 +19,11 @@ public interface ValueNode<K extends PathArgument, V> extends NormalizedNode<K,
     /**
      * Returns value of held by this node.
      *
-     * <h3>Implementation notes</h3> Invocation of {@link #getValue()} must
-     * provides same value as value in {@link #getIdentifier()}.
-     * <code>true == this.getIdentifier().getValue().equals(this.getValue())</code>
-     *
-     * @return Returned value of this node. Value SHOULD meet criteria
-     *         defined by schema.
+     * <b>Implementation note</b>
+     * Invocation of {@link #getValue()} must provide the same value as value in {@link #getIdentifier()}.
+     * {@code true == this.getIdentifier().getValue().equals(this.getValue())}.
      *
+     * @return Returned value of this node. Value SHOULD meet criteria defined by schema.
      */
     @Override
     V getValue();