8373dc7e528caeae52455c150936e314fc1e6aaa
[yangtools.git] / yang / yang-data-util / src / main / java / org / opendaylight / yangtools / yang / data / util / LeafListEntryNodeDataWithSchema.java
1 /*
2  * Copyright (c) 2016 Cisco Systems, Inc. and others.  All rights reserved.
3  *
4  * This program and the accompanying materials are made available under the
5  * terms of the Eclipse Public License v1.0 which accompanies this distribution,
6  * and is available at http://www.eclipse.org/legal/epl-v10.html
7  */
8 package org.opendaylight.yangtools.yang.data.util;
9
10 import java.io.IOException;
11 import org.opendaylight.yangtools.yang.data.api.schema.stream.NormalizedNodeStreamAttributeWriter;
12 import org.opendaylight.yangtools.yang.data.api.schema.stream.NormalizedNodeStreamWriter;
13 import org.opendaylight.yangtools.yang.model.api.DataSchemaNode;
14
15 /**
16  * Utility class used for tracking parser state as needed by a StAX-like parser.
17  * This class is to be used only by respective XML and JSON parsers in yang-data-codec-xml and yang-data-codec-gson.
18  *
19  * <p>
20  * Represents a YANG leaf-list entry node.
21  */
22 public class LeafListEntryNodeDataWithSchema extends SimpleNodeDataWithSchema {
23     public LeafListEntryNodeDataWithSchema(final DataSchemaNode dataSchemaNode) {
24         super(dataSchemaNode);
25     }
26
27     @Override
28     public void write(final NormalizedNodeStreamWriter writer) throws IOException {
29         writer.nextDataSchemaNode(getSchema());
30
31         if (writer instanceof NormalizedNodeStreamAttributeWriter && getAttributes() != null) {
32             ((NormalizedNodeStreamAttributeWriter) writer).leafSetEntryNode(getSchema().getQName(), getValue(),
33                     getAttributes());
34         } else {
35             writer.leafSetEntryNode(getSchema().getQName(), getValue());
36         }
37     }
38 }