Eliminate SourceException throws declarations
[yangtools.git] / yang / yang-parser-impl / src / main / java / org / opendaylight / yangtools / yang / parser / stmt / rfc6020 / IfFeatureStatementImpl.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.common.QName;
11 import org.opendaylight.yangtools.yang.model.api.Rfc6020Mapping;
12 import org.opendaylight.yangtools.yang.model.api.meta.EffectiveStatement;
13 import org.opendaylight.yangtools.yang.model.api.stmt.IfFeatureStatement;
14 import org.opendaylight.yangtools.yang.parser.spi.SubstatementValidator;
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.stmt.rfc6020.effective.IfFeatureEffectiveStatementImpl;
19
20 public class IfFeatureStatementImpl extends AbstractDeclaredStatement<QName>
21         implements IfFeatureStatement {
22     private static final SubstatementValidator SUBSTATEMENT_VALIDATOR = SubstatementValidator.builder(Rfc6020Mapping
23             .IF_FEATURE)
24             .build();
25
26     protected IfFeatureStatementImpl(
27             StmtContext<QName, IfFeatureStatement, ?> context) {
28         super(context);
29     }
30
31     public static class Definition
32             extends
33             AbstractStatementSupport<QName, IfFeatureStatement, EffectiveStatement<QName, IfFeatureStatement>> {
34
35         public Definition() {
36             super(Rfc6020Mapping.IF_FEATURE);
37         }
38
39         @Override
40         public QName parseArgumentValue(StmtContext<?, ?, ?> ctx, String value) {
41             return Utils.qNameFromArgument(ctx, value);
42         }
43
44         @Override
45         public IfFeatureStatement createDeclared(
46                 StmtContext<QName, IfFeatureStatement, ?> ctx) {
47             return new IfFeatureStatementImpl(ctx);
48         }
49
50         @Override
51         public EffectiveStatement<QName, IfFeatureStatement> createEffective(
52                 StmtContext<QName, IfFeatureStatement, EffectiveStatement<QName, IfFeatureStatement>> ctx) {
53             return new IfFeatureEffectiveStatementImpl(ctx);
54         }
55
56         @Override
57         public void onFullDefinitionDeclared(StmtContext.Mutable<QName, IfFeatureStatement,
58                 EffectiveStatement<QName, IfFeatureStatement>> stmt) {
59             super.onFullDefinitionDeclared(stmt);
60             SUBSTATEMENT_VALIDATOR.validate(stmt);
61         }
62     }
63
64     @Override
65     public QName getName() {
66         return argument();
67     }
68
69 }