Fix eclipse/checkstyle warnings
[yangtools.git] / yang / yang-data-api / src / main / java / org / opendaylight / yangtools / yang / data / api / schema / LeafNode.java
index 8dcdfde984d3a093c7e7bdd3bf29938a4615c4cf..5ec80151ee0c6a9661924c08daf567cf88009822 100644 (file)
@@ -11,8 +11,9 @@ import org.opendaylight.yangtools.yang.data.api.AttributesContainer;
 import org.opendaylight.yangtools.yang.data.api.YangInstanceIdentifier.NodeIdentifier;
 
 /**
- * Leaf node with multiplicity 0..1
+ * Leaf node with multiplicity 0..1.
  *
+ * <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.LeafSchemaNode}.
  *
@@ -20,9 +21,8 @@ import org.opendaylight.yangtools.yang.data.api.YangInstanceIdentifier.NodeIdent
  */
 public interface LeafNode<T> extends AttributesContainer, DataContainerChild<NodeIdentifier, T>,
         ValueNode<NodeIdentifier, T> {
-
     /**
-     * Returns value of this leaf node
+     * Returns value of this leaf node.
      *
      * @return Returned value of this leaf node. Value SHOULD meet criteria defined by schema.
      */