Deprecate getSemanticVersion() for removal
[yangtools.git] / model / yang-model-ri / src / main / java / org / opendaylight / yangtools / yang / model / ri / stmt / impl / eff / RegularGroupingEffectiveStatement.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.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.GroupingStatement;
17
18 public final class RegularGroupingEffectiveStatement extends AbstractGroupingEffectiveStatement {
19     private final @NonNull QName argument;
20
21     public RegularGroupingEffectiveStatement(final GroupingStatement 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     @Override
29     public QName argument() {
30         return argument;
31     }
32 }