Bug 6897: Adding getSubstatementValidator() method to AbstractStatementSupport
[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 javax.annotation.Nonnull;
11 import org.opendaylight.yangtools.yang.common.QName;
12 import org.opendaylight.yangtools.yang.model.api.YangStmtMapping;
13 import org.opendaylight.yangtools.yang.model.api.meta.EffectiveStatement;
14 import org.opendaylight.yangtools.yang.model.api.stmt.IfFeatureStatement;
15 import org.opendaylight.yangtools.yang.parser.spi.SubstatementValidator;
16 import org.opendaylight.yangtools.yang.parser.spi.meta.AbstractDeclaredStatement;
17 import org.opendaylight.yangtools.yang.parser.spi.meta.AbstractStatementSupport;
18 import org.opendaylight.yangtools.yang.parser.spi.meta.StmtContext;
19 import org.opendaylight.yangtools.yang.parser.stmt.rfc6020.effective.IfFeatureEffectiveStatementImpl;
20
21 public class IfFeatureStatementImpl extends AbstractDeclaredStatement<QName>
22         implements IfFeatureStatement {
23     private static final SubstatementValidator SUBSTATEMENT_VALIDATOR = SubstatementValidator.builder(YangStmtMapping
24             .IF_FEATURE)
25             .build();
26
27     protected IfFeatureStatementImpl(
28             StmtContext<QName, IfFeatureStatement, ?> context) {
29         super(context);
30     }
31
32     public static class Definition
33             extends
34             AbstractStatementSupport<QName, IfFeatureStatement, EffectiveStatement<QName, IfFeatureStatement>> {
35
36         public Definition() {
37             super(YangStmtMapping.IF_FEATURE);
38         }
39
40         @Override
41         public QName parseArgumentValue(StmtContext<?, ?, ?> ctx, String value) {
42             return Utils.qNameFromArgument(ctx, value);
43         }
44
45         @Override
46         public IfFeatureStatement createDeclared(
47                 StmtContext<QName, IfFeatureStatement, ?> ctx) {
48             return new IfFeatureStatementImpl(ctx);
49         }
50
51         @Override
52         public EffectiveStatement<QName, IfFeatureStatement> createEffective(
53                 StmtContext<QName, IfFeatureStatement, EffectiveStatement<QName, IfFeatureStatement>> ctx) {
54             return new IfFeatureEffectiveStatementImpl(ctx);
55         }
56
57         @Override
58         public void onFullDefinitionDeclared(StmtContext.Mutable<QName, IfFeatureStatement,
59                 EffectiveStatement<QName, IfFeatureStatement>> stmt) {
60             super.onFullDefinitionDeclared(stmt);
61             getSubstatementValidator().validate(stmt);
62         }
63
64         @Override
65         protected SubstatementValidator getSubstatementValidator() {
66             return SUBSTATEMENT_VALIDATOR;
67         }
68     }
69
70     @Nonnull
71     @Override
72     public QName getName() {
73         return argument();
74     }
75
76 }