Propagate @Nonnull and @Nullable annotations
[yangtools.git] / yang / yang-parser-impl / src / main / java / org / opendaylight / yangtools / yang / parser / stmt / rfc6020 / effective / type / Decimal64SpecificationEffectiveStatementImpl.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.effective.type;
9
10 import javax.annotation.Nonnull;
11 import org.opendaylight.yangtools.yang.model.api.meta.EffectiveStatement;
12 import org.opendaylight.yangtools.yang.model.api.stmt.TypeEffectiveStatement;
13 import org.opendaylight.yangtools.yang.model.api.stmt.TypeStatement.Decimal64Specification;
14 import org.opendaylight.yangtools.yang.model.api.type.DecimalTypeDefinition;
15 import org.opendaylight.yangtools.yang.model.util.type.BaseTypes;
16 import org.opendaylight.yangtools.yang.model.util.type.DecimalTypeBuilder;
17 import org.opendaylight.yangtools.yang.parser.spi.meta.StmtContext;
18 import org.opendaylight.yangtools.yang.parser.stmt.rfc6020.effective.DeclaredEffectiveStatementBase;
19 import org.opendaylight.yangtools.yang.parser.stmt.rfc6020.effective.FractionDigitsEffectiveStatementImpl;
20 import org.opendaylight.yangtools.yang.parser.stmt.rfc6020.effective.UnknownEffectiveStatementImpl;
21
22 public final class Decimal64SpecificationEffectiveStatementImpl extends
23         DeclaredEffectiveStatementBase<String, Decimal64Specification>
24         implements TypeEffectiveStatement<Decimal64Specification> {
25
26     private final DecimalTypeDefinition typeDefinition;
27
28     public Decimal64SpecificationEffectiveStatementImpl(
29             final StmtContext<String, Decimal64Specification, EffectiveStatement<String, Decimal64Specification>> ctx) {
30         super(ctx);
31
32         final DecimalTypeBuilder builder = BaseTypes.decimalTypeBuilder(ctx.getSchemaPath().get());
33
34         for (final EffectiveStatement<?, ?> stmt : effectiveSubstatements()) {
35             if (stmt instanceof FractionDigitsEffectiveStatementImpl) {
36                 builder.setFractionDigits(((FractionDigitsEffectiveStatementImpl) stmt).argument());
37             }
38             if (stmt instanceof RangeEffectiveStatementImpl) {
39                 builder.setRangeAlternatives(((RangeEffectiveStatementImpl)stmt).argument());
40             }
41             if (stmt instanceof UnknownEffectiveStatementImpl) {
42                 builder.addUnknownSchemaNode((UnknownEffectiveStatementImpl)stmt);
43             }
44         }
45
46         typeDefinition = builder.build();
47     }
48
49     @Nonnull
50     @Override
51     public DecimalTypeDefinition getTypeDefinition() {
52         return typeDefinition;
53     }
54 }