Fix eclipse/checkstyle warnings
[yangtools.git] / yang / yang-data-api / src / main / java / org / opendaylight / yangtools / yang / data / api / schema / OrderedNodeContainer.java
index 628383ceed8734849db8513845b4a57af3eee739..4516d77c7234d421179e2aea4d10175705f4cd71 100644 (file)
@@ -11,16 +11,15 @@ import java.util.Collection;
 import org.opendaylight.yangtools.yang.data.api.YangInstanceIdentifier.NodeIdentifier;
 
 /**
- *
  * Normalized Node container which preserves user supplied ordering
  * and allows addressing of child elements by position.
  *
  * @param <V> child type
  */
-public interface OrderedNodeContainer<V extends NormalizedNode<?, ?>> extends MixinNode, NormalizedNode<NodeIdentifier, Collection<V>> {
-
+public interface OrderedNodeContainer<V extends NormalizedNode<?, ?>> extends MixinNode,
+       NormalizedNode<NodeIdentifier, Collection<V>> {
     /**
-     * Returns child node by position
+     * Returns child node by position.
      *
      * @param position Position of child node
      * @return Child Node
@@ -29,7 +28,7 @@ public interface OrderedNodeContainer<V extends NormalizedNode<?, ?>> extends Mi
     V getChild(int position);
 
     /**
-     * Returns count of child nodes
+     * Returns count of child nodes.
      *
      * @return count of child nodes.
      */