e1505c7b10898d097b75783314b6f8f136c8ec92
[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 com.google.gson.stream.JsonWriter;
12 import java.io.IOException;
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 JsonWriter writer) throws IOException {
27         writeMyJsonIdentifier(schema, writer, getQName());
28         writer.beginArray();
29     }
30
31     @Override
32     protected void emitEnd(final JsonWriter writer) throws IOException {
33         writer.endArray();
34     }
35 }