X-Git-Url: https://git.opendaylight.org/gerrit/gitweb?a=blobdiff_plain;f=yang%2Fyang-model-spi%2Fsrc%2Fmain%2Fjava%2Forg%2Fopendaylight%2Fyangtools%2Fyang%2Fmodel%2Fspi%2Fstmt%2Fimpl%2Feff%2FRegularIfFeatureEffectiveStatement.java;fp=yang%2Fyang-model-spi%2Fsrc%2Fmain%2Fjava%2Forg%2Fopendaylight%2Fyangtools%2Fyang%2Fmodel%2Fspi%2Fstmt%2Fimpl%2Feff%2FRegularIfFeatureEffectiveStatement.java;h=757ec702e38b62acb164a7956de0ddc9ab35eaa5;hb=df63456107dfc68cde61ce4b57e408a017cf2131;hp=0000000000000000000000000000000000000000;hpb=c562c0ce956b098e91205ff0fb609f82f5b9ea57;p=yangtools.git diff --git a/yang/yang-model-spi/src/main/java/org/opendaylight/yangtools/yang/model/spi/stmt/impl/eff/RegularIfFeatureEffectiveStatement.java b/yang/yang-model-spi/src/main/java/org/opendaylight/yangtools/yang/model/spi/stmt/impl/eff/RegularIfFeatureEffectiveStatement.java new file mode 100644 index 0000000000..757ec702e3 --- /dev/null +++ b/yang/yang-model-spi/src/main/java/org/opendaylight/yangtools/yang/model/spi/stmt/impl/eff/RegularIfFeatureEffectiveStatement.java @@ -0,0 +1,23 @@ +/* + * Copyright (c) 2020 PANTHEON.tech, s.r.o. and others. All rights reserved. + * + * This program and the accompanying materials are made available under the + * terms of the Eclipse Public License v1.0 which accompanies this distribution, + * and is available at http://www.eclipse.org/legal/epl-v10.html + */ +package org.opendaylight.yangtools.yang.model.spi.stmt.impl.eff; + +import com.google.common.collect.ImmutableList; +import org.opendaylight.yangtools.yang.model.api.meta.EffectiveStatement; +import org.opendaylight.yangtools.yang.model.api.stmt.IfFeatureEffectiveStatement; +import org.opendaylight.yangtools.yang.model.api.stmt.IfFeatureExpr; +import org.opendaylight.yangtools.yang.model.api.stmt.IfFeatureStatement; +import org.opendaylight.yangtools.yang.model.spi.meta.AbstractDeclaredEffectiveStatement.DefaultArgument.WithSubstatements; + +public final class RegularIfFeatureEffectiveStatement extends WithSubstatements + implements IfFeatureEffectiveStatement { + public RegularIfFeatureEffectiveStatement(final IfFeatureStatement declared, + final ImmutableList> substatements) { + super(declared, substatements); + } +}