BUG-1704: rework state tracking
[yangtools.git] / yang / yang-data-codec-gson / src / main / java / org / opendaylight / yangtools / yang / data / codec / gson / JSONStreamWriterObjectContext.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
12 import java.io.IOException;
13 import java.io.Writer;
14
15 import org.opendaylight.yangtools.yang.data.api.YangInstanceIdentifier.PathArgument;
16 import org.opendaylight.yangtools.yang.model.api.SchemaContext;
17
18 /**
19  * A recursion level of {@link JSONNormalizedNodeStreamWriter}, which represents
20  * a JSON object which does not have to be prefixed with its identifier -- such
21  * as when it is in a containing list.
22  */
23 class JSONStreamWriterObjectContext extends JSONStreamWriterQNameContext {
24     protected JSONStreamWriterObjectContext(final JSONStreamWriterContext parent, final PathArgument arg, final boolean mandatory) {
25         super(Preconditions.checkNotNull(parent), arg.getNodeType(), mandatory);
26     }
27
28     @Override
29     protected void emitStart(final SchemaContext schema, final Writer writer) throws IOException {
30         writer.append('{');
31     }
32
33     @Override
34     protected void emitEnd(final Writer writer) throws IOException {
35         writer.append('}');
36     }
37 }