ed7bd092c952c3e00552a6ab2aa5b7875f4673a9
[yangtools.git] / yang / yang-data-codec-gson / src / main / java / org / opendaylight / yangtools / yang / data / codec / gson / JSONStreamWriterListContext.java
1 /*
2  * Copyright (c) 2014 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.codec.gson;
9
10 import com.google.common.base.Preconditions;
11 import java.io.IOException;
12 import java.io.Writer;
13 import org.opendaylight.yangtools.yang.data.api.YangInstanceIdentifier.NodeIdentifier;
14 import org.opendaylight.yangtools.yang.model.api.SchemaContext;
15
16 /**
17  * A single recursion level of {@link JSONNormalizedNodeStreamWriter} representing
18  * a list.
19  */
20 final class JSONStreamWriterListContext extends JSONStreamWriterQNameContext {
21     protected JSONStreamWriterListContext(final JSONStreamWriterContext parent, final NodeIdentifier id) {
22         super(Preconditions.checkNotNull(parent), id.getNodeType(), false);
23     }
24
25     @Override
26     protected void emitStart(final SchemaContext schema, final Writer writer) throws IOException {
27         writeJsonIdentifier(schema, writer, getQName());
28         writer.append('[');
29     }
30
31     @Override
32     protected void emitEnd(final Writer writer) throws IOException {
33         writer.append(']');
34     }
35 }