/* * Copyright (c) 2014 Cisco Systems, Inc. and others. All rights reserved. * * This program and the accompanying materials are made available under the * terms of the Eclipse Public License v1.0 which accompanies this distribution, * and is available at http://www.eclipse.org/legal/epl-v10.html */ package org.opendaylight.yangtools.yang.data.codec.gson; import com.google.common.base.Preconditions; import java.io.IOException; import java.io.Writer; import org.opendaylight.yangtools.yang.data.api.YangInstanceIdentifier.NodeIdentifier; import org.opendaylight.yangtools.yang.model.api.SchemaContext; /** * A single recursion level of {@link JSONNormalizedNodeStreamWriter} representing * a list. */ final class JSONStreamWriterListContext extends JSONStreamWriterQNameContext { protected JSONStreamWriterListContext(final JSONStreamWriterContext parent, final NodeIdentifier id) { super(Preconditions.checkNotNull(parent), id.getNodeType(), false); } @Override protected void emitStart(final SchemaContext schema, final Writer writer) throws IOException { writeMyJsonIdentifier(schema, writer, getQName()); writer.append('['); } @Override protected void emitEnd(final Writer writer) throws IOException { writer.append(']'); } }