cac95796c7463fb9d26bee9cff68991e3853ff2b
[yangtools.git] / yang / yang-data-codec-gson / src / main / java / org / opendaylight / yangtools / yang / data / codec / gson / JSONStreamWriterNamedObjectContext.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.gson.stream.JsonWriter;
11 import java.io.IOException;
12 import org.opendaylight.yangtools.yang.data.api.YangInstanceIdentifier.PathArgument;
13 import org.opendaylight.yangtools.yang.model.api.SchemaContext;
14
15 /**
16  * A recursion level of {@link JSONNormalizedNodeStreamWriter}, which represents
17  * a JSON object which has to be prefixed with its identifier -- such as a
18  * container.
19  */
20 final class JSONStreamWriterNamedObjectContext extends JSONStreamWriterObjectContext {
21     protected JSONStreamWriterNamedObjectContext(final JSONStreamWriterContext parent, final PathArgument arg,
22             final boolean mandatory) {
23         super(parent, arg, mandatory);
24     }
25
26     @Override
27     protected void emitStart(final SchemaContext schema, final JsonWriter writer) throws IOException {
28         writeMyJsonIdentifier(schema, writer, getQName());
29         super.emitStart(schema, writer);
30     }
31 }