d68cbf9234cd83bbb3235d2b9f9e30c27bd76415
[yangtools.git] / yang / yang-data-codec-gson / src / main / java / org / opendaylight / yangtools / yang / data / codec / gson / ChoiceNodeDataWithSchema.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 static org.opendaylight.yangtools.yang.data.api.schema.stream.NormalizedNodeStreamWriter.UNKNOWN_SIZE;
11
12 import java.io.IOException;
13
14 import org.opendaylight.yangtools.yang.data.api.schema.stream.NormalizedNodeStreamWriter;
15 import org.opendaylight.yangtools.yang.model.api.ChoiceCaseNode;
16 import org.opendaylight.yangtools.yang.model.api.ChoiceNode;
17 import org.opendaylight.yangtools.yang.model.api.DataSchemaNode;
18
19 /**
20  *
21  * childs - empty augment - only one element can be
22  *
23  */
24 class ChoiceNodeDataWithSchema extends CompositeNodeDataWithSchema {
25
26     private CaseNodeDataWithSchema caseNodeDataWithSchema;
27
28     public ChoiceNodeDataWithSchema(final ChoiceNode schema) {
29         super(schema);
30     }
31
32     @Override
33     public CompositeNodeDataWithSchema addCompositeChild(final DataSchemaNode schema) {
34         CaseNodeDataWithSchema newChild = new CaseNodeDataWithSchema((ChoiceCaseNode) schema);
35         caseNodeDataWithSchema = newChild;
36         addCompositeChild(newChild);
37         return newChild;
38     }
39
40     public CaseNodeDataWithSchema getCase() {
41         return caseNodeDataWithSchema;
42     }
43
44     @Override
45     public void write(final NormalizedNodeStreamWriter writer) throws IOException {
46         writer.startChoiceNode(provideNodeIdentifier(), UNKNOWN_SIZE);
47         super.write(writer);
48         writer.endNode();
49     }
50 }