Bug 3670 (part 3/5): Use of new statement parser in yang-maven-plugin
[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.spi.source.SourceException;
18 import org.opendaylight.yangtools.yang.parser.stmt.rfc6020.effective.type.NumericalRestrictionsEffectiveStatementImpl;
19
20 public class NumericalRestrictionsImpl extends AbstractDeclaredStatement<String> implements
21         TypeStatement.NumericalRestrictions {
22
23     protected NumericalRestrictionsImpl(StmtContext<String, TypeStatement.NumericalRestrictions, ?> context) {
24         super(context);
25     }
26
27     public static class Definition
28             extends
29             AbstractStatementSupport<String, TypeStatement.NumericalRestrictions, EffectiveStatement<String, TypeStatement.NumericalRestrictions>> {
30
31         public Definition() {
32             super(Rfc6020Mapping.TYPE);
33         }
34
35         @Override
36         public String parseArgumentValue(StmtContext<?, ?, ?> ctx, String value) throws SourceException {
37             return value;
38         }
39
40         @Override
41         public TypeStatement.NumericalRestrictions createDeclared(
42                 StmtContext<String, TypeStatement.NumericalRestrictions, ?> ctx) {
43             return new NumericalRestrictionsImpl(ctx);
44         }
45
46         @Override
47         public EffectiveStatement<String, TypeStatement.NumericalRestrictions> createEffective(
48                 StmtContext<String, TypeStatement.NumericalRestrictions, EffectiveStatement<String, TypeStatement.NumericalRestrictions>> ctx) {
49             return new NumericalRestrictionsEffectiveStatementImpl(ctx);
50         }
51     }
52
53     @Override
54     public String getName() {
55         return argument();
56     }
57
58     @Override
59     public RangeStatement getRange() {
60         return firstDeclared(RangeStatement.class);
61     }
62
63 }