Add OrderedByAwareEffectiveStatement
[yangtools.git] / model / yang-model-ri / src / main / java / org / opendaylight / yangtools / yang / model / ri / stmt / impl / eff / RegularContainerEffectiveStatement.java
1 /*
2  * Copyright (c) 2021 PANTHEON.tech, s.r.o. 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.ri.stmt.impl.eff;
9
10 import static java.util.Objects.requireNonNull;
11
12 import com.google.common.collect.ImmutableList;
13 import org.eclipse.jdt.annotation.NonNull;
14 import org.opendaylight.yangtools.yang.common.QName;
15 import org.opendaylight.yangtools.yang.model.api.meta.EffectiveStatement;
16 import org.opendaylight.yangtools.yang.model.api.stmt.ContainerStatement;
17
18 public final class RegularContainerEffectiveStatement extends AbstractContainerEffectiveStatement {
19     private final @NonNull QName argument;
20
21     public RegularContainerEffectiveStatement(final ContainerStatement declared,
22             final ImmutableList<? extends EffectiveStatement<?, ?>> substatements, final QName argument,
23             final int flags) {
24         super(declared, substatements, flags);
25         this.argument = requireNonNull(argument);
26     }
27
28     public RegularContainerEffectiveStatement(final AbstractContainerEffectiveStatement original, final QName argument,
29             final int flags) {
30         super(original, flags);
31         this.argument = requireNonNull(argument);
32     }
33
34     @Override
35     public QName argument() {
36         return argument;
37     }
38 }