Revert Merge "Bug 2366: new parser - Types & TypeDefs"
[yangtools.git] / yang / yang-parser-impl / src / main / java / org / opendaylight / yangtools / yang / parser / stmt / rfc6020 / UnionSpecificationImpl.java
1 /**
2  * Copyright (c) 2015 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.parser.stmt.rfc6020;
9
10 import java.util.Collection;
11 import org.opendaylight.yangtools.yang.parser.spi.source.SourceException;
12 import org.opendaylight.yangtools.yang.parser.spi.meta.AbstractStatementSupport;
13 import org.opendaylight.yangtools.yang.parser.spi.meta.AbstractDeclaredStatement;
14 import org.opendaylight.yangtools.yang.parser.spi.meta.StmtContext;
15 import org.opendaylight.yangtools.yang.model.api.Rfc6020Mapping;
16 import org.opendaylight.yangtools.yang.model.api.meta.EffectiveStatement;
17 import org.opendaylight.yangtools.yang.model.api.stmt.TypeStatement;
18
19 public class UnionSpecificationImpl extends AbstractDeclaredStatement<String>
20         implements TypeStatement.UnionSpecification {
21
22     protected UnionSpecificationImpl(
23             StmtContext<String, TypeStatement.UnionSpecification, ?> context) {
24         super(context);
25     }
26
27     public static class Definition
28             extends
29             AbstractStatementSupport<String, TypeStatement.UnionSpecification, EffectiveStatement<String, TypeStatement.UnionSpecification>> {
30
31         public Definition() {
32             super(Rfc6020Mapping.TYPE);
33         }
34
35         @Override
36         public String parseArgumentValue(StmtContext<?, ?, ?> ctx, String value)
37                 throws SourceException {
38             return value;
39         }
40
41         @Override
42         public TypeStatement.UnionSpecification createDeclared(
43                 StmtContext<String, TypeStatement.UnionSpecification, ?> ctx) {
44             return new UnionSpecificationImpl(ctx);
45         }
46
47         @Override
48         public EffectiveStatement<String, TypeStatement.UnionSpecification> createEffective(
49                 StmtContext<String, TypeStatement.UnionSpecification, EffectiveStatement<String, TypeStatement.UnionSpecification>> ctx) {
50             throw new UnsupportedOperationException();
51         }
52     }
53
54     @Override
55     public String getName() {
56         return argument();
57     }
58
59     @Override
60     public Collection<? extends TypeStatement> getTypes() {
61         return allDeclared(TypeStatement.class);
62     }
63
64 }