Mass-migrate to use EffectiveModelContext
[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 static java.util.Objects.requireNonNull;
11
12 import com.google.gson.stream.JsonWriter;
13 import java.io.IOException;
14 import org.opendaylight.yangtools.yang.data.api.YangInstanceIdentifier.NodeIdentifier;
15 import org.opendaylight.yangtools.yang.model.api.EffectiveModelContext;
16
17 /**
18  * A single recursion level of {@link JSONNormalizedNodeStreamWriter} representing
19  * a list.
20  */
21 final class JSONStreamWriterListContext extends JSONStreamWriterQNameContext {
22     protected JSONStreamWriterListContext(final JSONStreamWriterContext parent, final NodeIdentifier id) {
23         super(requireNonNull(parent), id.getNodeType(), false);
24     }
25
26     @Override
27     protected void emitStart(final EffectiveModelContext schema, final JsonWriter writer) throws IOException {
28         writeMyJsonIdentifier(schema, writer, getQName());
29         writer.beginArray();
30     }
31
32     @Override
33     protected void emitEnd(final JsonWriter writer) throws IOException {
34         writer.endArray();
35     }
36 }