Eliminate SourceException throws declarations
[yangtools.git] / yang / yang-parser-impl / src / main / java / org / opendaylight / yangtools / yang / parser / stmt / rfc6020 / WhenStatementImpl.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 javax.annotation.Nonnull;
11 import javax.annotation.Nullable;
12 import org.opendaylight.yangtools.yang.model.api.RevisionAwareXPath;
13 import org.opendaylight.yangtools.yang.model.api.Rfc6020Mapping;
14 import org.opendaylight.yangtools.yang.model.api.meta.EffectiveStatement;
15 import org.opendaylight.yangtools.yang.model.api.stmt.DescriptionStatement;
16 import org.opendaylight.yangtools.yang.model.api.stmt.ReferenceStatement;
17 import org.opendaylight.yangtools.yang.model.api.stmt.WhenStatement;
18 import org.opendaylight.yangtools.yang.parser.spi.SubstatementValidator;
19 import org.opendaylight.yangtools.yang.parser.spi.meta.AbstractDeclaredStatement;
20 import org.opendaylight.yangtools.yang.parser.spi.meta.AbstractStatementSupport;
21 import org.opendaylight.yangtools.yang.parser.spi.meta.StmtContext;
22 import org.opendaylight.yangtools.yang.parser.stmt.rfc6020.effective.WhenEffectiveStatementImpl;
23
24 public class WhenStatementImpl extends AbstractDeclaredStatement<RevisionAwareXPath> implements WhenStatement {
25     private static final SubstatementValidator SUBSTATEMENT_VALIDATOR = SubstatementValidator.builder(Rfc6020Mapping
26             .WHEN)
27             .add(Rfc6020Mapping.DESCRIPTION, 0, 1)
28             .add(Rfc6020Mapping.REFERENCE, 0, 1)
29             .build();
30
31     protected WhenStatementImpl(final StmtContext<RevisionAwareXPath, WhenStatement, ?> context) {
32         super(context);
33     }
34
35     public static class Definition extends
36             AbstractStatementSupport<RevisionAwareXPath, WhenStatement, EffectiveStatement<RevisionAwareXPath, WhenStatement>> {
37
38         public Definition() {
39             super(Rfc6020Mapping.WHEN);
40         }
41
42         @Override
43         public RevisionAwareXPath parseArgumentValue(final StmtContext<?, ?, ?> ctx, final String value) {
44             return Utils.parseXPath(ctx, value);
45         }
46
47         @Override
48         public WhenStatement createDeclared(final StmtContext<RevisionAwareXPath, WhenStatement, ?> ctx) {
49             return new WhenStatementImpl(ctx);
50         }
51
52         @Override
53         public EffectiveStatement<RevisionAwareXPath, WhenStatement> createEffective(
54                 final StmtContext<RevisionAwareXPath, WhenStatement, EffectiveStatement<RevisionAwareXPath, WhenStatement>> ctx) {
55             return new WhenEffectiveStatementImpl(ctx);
56         }
57
58         @Override
59         public void onFullDefinitionDeclared(StmtContext.Mutable<RevisionAwareXPath, WhenStatement,
60                 EffectiveStatement<RevisionAwareXPath, WhenStatement>> stmt) {
61             super.onFullDefinitionDeclared(stmt);
62             SUBSTATEMENT_VALIDATOR.validate(stmt);
63         }
64     }
65
66     @Nonnull
67     @Override
68     public RevisionAwareXPath getCondition() {
69         return argument();
70     }
71
72     @Nullable
73     @Override
74     public DescriptionStatement getDescription() {
75         return firstDeclared(DescriptionStatement.class);
76     }
77
78     @Nullable
79     @Override
80     public ReferenceStatement getReference() {
81         return firstDeclared(ReferenceStatement.class);
82     }
83 }