Bug 5019: Add QName param to NormalizedNodeWriter#leafSetEntryNode
[yangtools.git] / yang / yang-data-api / src / main / java / org / opendaylight / yangtools / yang / data / api / schema / stream / NormalizedNodeStreamAttributeWriter.java
index 5074acaa176c0a8fd0be7bcbcb13020b8d8f05b9..f28d75c82fe440a32bcf956f4ba9d56cfa256726 100644 (file)
@@ -19,7 +19,7 @@ public interface NormalizedNodeStreamAttributeWriter extends NormalizedNodeStrea
 
     void leafNode(YangInstanceIdentifier.NodeIdentifier name, Object value, Map<QName, String> attributes) throws IOException;
 
-    void leafSetEntryNode(Object value, Map<QName, String> attributes) throws IOException;
+    void leafSetEntryNode(QName name, Object value, Map<QName, String> attributes) throws IOException;
 
     void startContainerNode(YangInstanceIdentifier.NodeIdentifier name, int childSizeHint, Map<QName, String> attributes) throws IOException;