Enable checkstyle on yang-data-codec-gson
[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 import com.google.gson.stream.JsonWriter;
12 import java.io.IOException;
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 does not have to be prefixed with its identifier -- such
19  * as when it is in a containing list.
20  */
21 class JSONStreamWriterObjectContext extends JSONStreamWriterQNameContext {
22     protected JSONStreamWriterObjectContext(final JSONStreamWriterContext parent, final PathArgument arg,
23             final boolean mandatory) {
24         super(Preconditions.checkNotNull(parent), arg.getNodeType(), mandatory);
25     }
26
27     @Override
28     protected void emitStart(final SchemaContext schema, final JsonWriter writer) throws IOException {
29         writer.beginObject();
30     }
31
32     @Override
33     protected void emitEnd(final JsonWriter writer) throws IOException {
34         writer.endObject();
35     }
36 }