Bug 1761: Fixed missing module name prefix for augmentations.
[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 java.io.IOException;
11 import java.io.Writer;
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, final boolean mandatory) {
22         super(parent, arg, mandatory);
23     }
24
25     @Override
26     protected void emitStart(final SchemaContext schema, final Writer writer) throws IOException {
27         writeMyJsonIdentifier(schema, writer, getQName());
28         super.emitStart(schema, writer);
29     }
30 }