Remove unused imports
[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.Rfc6020Mapping;
12 import org.opendaylight.yangtools.yang.model.api.meta.EffectiveStatement;
13 import org.opendaylight.yangtools.yang.model.api.stmt.BitStatement;
14 import org.opendaylight.yangtools.yang.model.api.stmt.TypeStatement;
15 import org.opendaylight.yangtools.yang.parser.spi.meta.AbstractDeclaredStatement;
16 import org.opendaylight.yangtools.yang.parser.spi.meta.AbstractStatementSupport;
17 import org.opendaylight.yangtools.yang.parser.spi.meta.StmtContext;
18 import org.opendaylight.yangtools.yang.parser.stmt.rfc6020.effective.type.BitsSpecificationEffectiveStatementImpl;
19
20 public class BitsSpecificationImpl extends AbstractDeclaredStatement<String> implements TypeStatement.BitsSpecification {
21
22     protected BitsSpecificationImpl(final StmtContext<String, TypeStatement.BitsSpecification, ?> context) {
23         super(context);
24     }
25
26     public static class Definition
27             extends
28             AbstractStatementSupport<String, TypeStatement.BitsSpecification, EffectiveStatement<String, TypeStatement.BitsSpecification>> {
29
30         public Definition() {
31             super(Rfc6020Mapping.TYPE);
32         }
33
34         @Override
35         public String parseArgumentValue(final StmtContext<?, ?, ?> ctx, final String value) {
36             return value;
37         }
38
39         @Override
40         public TypeStatement.BitsSpecification createDeclared(
41                 final StmtContext<String, TypeStatement.BitsSpecification, ?> ctx) {
42             return new BitsSpecificationImpl(ctx);
43         }
44
45         @Override
46         public EffectiveStatement<String, TypeStatement.BitsSpecification> createEffective(
47                 final StmtContext<String, TypeStatement.BitsSpecification, EffectiveStatement<String, TypeStatement.BitsSpecification>> ctx) {
48             return new BitsSpecificationEffectiveStatementImpl(ctx);
49         }
50     }
51
52     @Override
53     public String getName() {
54         return argument();
55     }
56
57     @Override
58     public Collection<? extends BitStatement> getBits() {
59         return allDeclared(BitStatement.class);
60     }
61
62 }