Do not pretty-print body class
[yangtools.git] / data / 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.rfc7952.data.api.StreamWriterMetadataExtension;
12 import org.opendaylight.yangtools.yang.data.api.YangInstanceIdentifier.NodeWithValue;
13 import org.opendaylight.yangtools.yang.data.api.schema.stream.NormalizedNodeStreamWriter;
14 import org.opendaylight.yangtools.yang.model.api.LeafListSchemaNode;
15
16 /**
17  * Utility class used for tracking parser state as needed by a StAX-like parser.
18  * This class is to be used only by respective XML and JSON parsers in yang-data-codec-xml and yang-data-codec-gson.
19  *
20  * <p>
21  * Represents a YANG leaf-list entry node.
22  */
23 public class LeafListEntryNodeDataWithSchema extends SimpleNodeDataWithSchema<LeafListSchemaNode> {
24     public LeafListEntryNodeDataWithSchema(final LeafListSchemaNode dataSchemaNode) {
25         super(dataSchemaNode);
26     }
27
28     @Override
29     public void write(final NormalizedNodeStreamWriter writer, final StreamWriterMetadataExtension metaWriter)
30             throws IOException {
31         writer.nextDataSchemaNode(getSchema());
32
33         writer.startLeafSetEntryNode(new NodeWithValue<>(getSchema().getQName(), getValue()));
34         writeMetadata(metaWriter);
35         writer.scalarValue(getValue());
36         writer.endNode();
37     }
38 }