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