Refactor anyxml/anydata
[yangtools.git] / yang / yang-parser-rfc7950 / src / main / java / org / opendaylight / yangtools / yang / parser / rfc7950 / stmt / anyxml / RegularAnyxmlEffectiveStatement.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.parser.rfc7950.stmt.anyxml;
9
10 import com.google.common.collect.ImmutableList;
11 import org.eclipse.jdt.annotation.NonNull;
12 import org.eclipse.jdt.annotation.Nullable;
13 import org.opendaylight.yangtools.yang.model.api.AnyxmlSchemaNode;
14 import org.opendaylight.yangtools.yang.model.api.SchemaPath;
15 import org.opendaylight.yangtools.yang.model.api.meta.EffectiveStatement;
16 import org.opendaylight.yangtools.yang.model.api.stmt.AnyxmlStatement;
17
18 final class RegularAnyxmlEffectiveStatement extends EmptyAnyxmlEffectiveStatement {
19     private final @NonNull Object substatements;
20
21     RegularAnyxmlEffectiveStatement(final AnyxmlStatement declared, final SchemaPath path, final int flags,
22             final @Nullable AnyxmlSchemaNode original,
23             final ImmutableList<? extends EffectiveStatement<?, ?>> substatements) {
24         super(declared, path, flags, original);
25         this.substatements = maskList(substatements);
26     }
27
28     @Override
29     public ImmutableList<? extends EffectiveStatement<?, ?>> effectiveSubstatements() {
30         return unmaskList(substatements);
31     }
32 }