0ccbbc1dc4e41f81c1c53f3f5a3f14a30d0180ff
[yangtools.git] / parser / yang-parser-rfc7950 / src / main / java / org / opendaylight / yangtools / yang / parser / rfc7950 / stmt / leaf_list / SlimLeafListEffectiveStatement.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.parser.rfc7950.stmt.leaf_list;
9
10 import com.google.common.collect.ImmutableList;
11 import com.google.common.collect.ImmutableSet;
12 import org.opendaylight.yangtools.concepts.Immutable;
13 import org.opendaylight.yangtools.yang.model.api.ElementCountConstraint;
14 import org.opendaylight.yangtools.yang.model.api.LeafListSchemaNode;
15 import org.opendaylight.yangtools.yang.model.api.meta.EffectiveStatement;
16 import org.opendaylight.yangtools.yang.model.api.stmt.LeafListStatement;
17
18 final class SlimLeafListEffectiveStatement extends AbstractNonEmptyLeafListEffectiveStatement {
19     SlimLeafListEffectiveStatement(final LeafListStatement declared, final Immutable path, final int flags,
20             final ImmutableList<? extends EffectiveStatement<?, ?>> substatements,
21             final LeafListSchemaNode original, final ElementCountConstraint elementCountConstraint) {
22         super(declared, path, flags, substatements, original, elementCountConstraint);
23     }
24
25     SlimLeafListEffectiveStatement(final SlimLeafListEffectiveStatement originalEffective,
26             final LeafListSchemaNode original, final Immutable path, final int flags) {
27         super(originalEffective, original, path, flags);
28     }
29
30     SlimLeafListEffectiveStatement(final EmptyLeafListEffectiveStatement originalEffective,
31             final LeafListSchemaNode original, final Immutable path, final int flags) {
32         super(originalEffective, original, path, flags);
33     }
34
35     @Override
36     public ImmutableSet<String> getDefaults() {
37         return ImmutableSet.of();
38     }
39 }