Bug 4610 - Do not create duplicate declared statements
[yangtools.git] / yang / yang-parser-impl / src / main / java / org / opendaylight / yangtools / yang / parser / stmt / rfc6020 / Decimal64SpecificationImpl.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.FractionDigitsStatement;
13 import org.opendaylight.yangtools.yang.model.api.stmt.RangeStatement;
14 import org.opendaylight.yangtools.yang.model.api.stmt.TypeStatement.Decimal64Specification;
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.spi.source.SourceException;
19 import org.opendaylight.yangtools.yang.parser.stmt.rfc6020.effective.type.Decimal64SpecificationEffectiveStatementImpl;
20
21 public class Decimal64SpecificationImpl extends AbstractDeclaredStatement<String> implements Decimal64Specification {
22
23     protected Decimal64SpecificationImpl(final StmtContext<String, Decimal64Specification, ?> context) {
24         super(context);
25     }
26
27     public static class Definition extends
28             AbstractStatementSupport<String, Decimal64Specification, EffectiveStatement<String, Decimal64Specification>> {
29
30         public Definition() {
31             super(Rfc6020Mapping.TYPE);
32         }
33
34         @Override
35         public String parseArgumentValue(final StmtContext<?, ?, ?> ctx, final String value) throws SourceException {
36             return value;
37         }
38
39         @Override
40         public Decimal64Specification createDeclared(final StmtContext<String, Decimal64Specification, ?> ctx) {
41             return new Decimal64SpecificationImpl(ctx);
42         }
43
44         @Override
45         public EffectiveStatement<String, Decimal64Specification> createEffective(
46                 final StmtContext<String, Decimal64Specification, EffectiveStatement<String, Decimal64Specification>> ctx) {
47             return new Decimal64SpecificationEffectiveStatementImpl(ctx);
48         }
49     }
50
51     @Override
52     public String getName() {
53         return argument();
54     }
55
56     @Override
57     public FractionDigitsStatement getFractionDigits() {
58         return firstDeclared(FractionDigitsStatement.class);
59     }
60
61     @Override
62     public RangeStatement getRange() {
63         return firstDeclared(RangeStatement.class);
64     }
65
66 }