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