BUG-9265: Switch empty type mapping from Void to Empty
[yangtools.git] / yang / yang-data-api / src / main / java / org / opendaylight / yangtools / yang / data / api / schema / LeafSetNode.java
index cff390d6dfea5903a77e18a77862ce33014e5ca8..77d45199e9fbe91387ed520a37a24d0e72872413 100644 (file)
@@ -7,21 +7,20 @@
  */
 package org.opendaylight.yangtools.yang.data.api.schema;
 
+import java.util.Collection;
 import org.opendaylight.yangtools.yang.data.api.YangInstanceIdentifier.NodeIdentifier;
 import org.opendaylight.yangtools.yang.data.api.YangInstanceIdentifier.NodeWithValue;
 
 /**
- * Node representing set of simple leaf nodes.
+ * Node representing set of simple leaf nodes. Node containing instances of {@link LeafSetEntryNode}.
  *
- * Node containing instances of {@link LeafSetEntryNode}
- *
- * Schema and semantics of this node are described by instance of {@link org.opendaylight.yangtools.yang.model.api.LeafListSchemaNode}.
+ * <p>
+ * Schema and semantics of this node are described by instance of
+ * {@link org.opendaylight.yangtools.yang.model.api.LeafListSchemaNode}.
  *
  * @param <T> Type of leaf node values.
  */
-public interface LeafSetNode<T> extends
-    MixinNode, //
-    DataContainerChild<NodeIdentifier, Iterable<LeafSetEntryNode<T>>>, //
-    NormalizedNodeContainer<NodeIdentifier, NodeWithValue,LeafSetEntryNode<T>> {
+public interface LeafSetNode<T> extends MixinNode, DataContainerChild<NodeIdentifier, Collection<LeafSetEntryNode<T>>>,
+    NormalizedNodeContainer<NodeIdentifier, NodeWithValue, LeafSetEntryNode<T>> {
 
 }