Remove Rfc6020AbnfRule
[yangtools.git] / model / yang-model-api / src / main / java / org / opendaylight / yangtools / yang / model / api / stmt / IfFeatureStatement.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.model.api.stmt;
9
10 import org.opendaylight.yangtools.yang.model.api.YangStmtMapping;
11 import org.opendaylight.yangtools.yang.model.api.meta.DeclaredStatement;
12 import org.opendaylight.yangtools.yang.model.api.meta.StatementDefinition;
13
14 /**
15  * Represents YANG if-feature statement. The "if-feature" statement makes its parent statement conditional.
16  */
17 public interface IfFeatureStatement extends DeclaredStatement<IfFeatureExpr> {
18     @Override
19     default StatementDefinition statementDefinition() {
20         return YangStmtMapping.IF_FEATURE;
21     }
22 }