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