Move TypDefinition creation
[yangtools.git] / model / yang-model-ri / src / main / java / org / opendaylight / yangtools / yang / model / ri / stmt / impl / eff / RegularLeafListEffectiveStatement.java
1 /*
2  * Copyright (c) 2020 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 com.google.common.collect.ImmutableSet;
14 import org.eclipse.jdt.annotation.NonNull;
15 import org.opendaylight.yangtools.yang.common.QName;
16 import org.opendaylight.yangtools.yang.model.api.ElementCountConstraint;
17 import org.opendaylight.yangtools.yang.model.api.meta.EffectiveStatement;
18 import org.opendaylight.yangtools.yang.model.api.stmt.LeafListStatement;
19
20 public final class RegularLeafListEffectiveStatement extends AbstractNonEmptyLeafListEffectiveStatement {
21     private final @NonNull ImmutableSet<String> defaults;
22
23     public RegularLeafListEffectiveStatement(final LeafListStatement declared, final QName argument, final int flags,
24             final ImmutableList<? extends EffectiveStatement<?, ?>> substatements, final ImmutableSet<String> defaults,
25             final ElementCountConstraint elementCountConstraint) {
26         super(declared, argument, flags, substatements, elementCountConstraint);
27         this.defaults = requireNonNull(defaults);
28     }
29
30     public RegularLeafListEffectiveStatement(final RegularLeafListEffectiveStatement originalEffective,
31             final QName argument, final int flags) {
32         super(originalEffective, argument, flags);
33         defaults = originalEffective.defaults;
34     }
35
36     @Override
37     public ImmutableSet<String> getDefaults() {
38         return defaults;
39     }
40 }