Remove AbstractExplicitGenerator.recursiveRuntimeType()
[mdsal.git] / binding / mdsal-binding-generator / src / main / java / org / opendaylight / mdsal / binding / generator / impl / rt / DerivedCaseRuntimeType.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.mdsal.binding.generator.impl.rt;
9
10 import static java.util.Objects.requireNonNull;
11
12 import com.google.common.annotations.Beta;
13 import java.util.List;
14 import org.eclipse.jdt.annotation.NonNull;
15 import org.opendaylight.mdsal.binding.model.api.GeneratedType;
16 import org.opendaylight.mdsal.binding.runtime.api.AugmentRuntimeType;
17 import org.opendaylight.mdsal.binding.runtime.api.CaseRuntimeType;
18 import org.opendaylight.mdsal.binding.runtime.api.RuntimeType;
19 import org.opendaylight.yangtools.yang.model.api.stmt.CaseEffectiveStatement;
20
21 @Beta
22 public final class DerivedCaseRuntimeType extends AbstractCaseRuntimeType {
23     private final @NonNull CaseRuntimeType originalType;
24
25     public DerivedCaseRuntimeType(final GeneratedType bindingType, final CaseEffectiveStatement statement,
26             final List<RuntimeType> children, final List<AugmentRuntimeType> augments,
27             final CaseRuntimeType originalType) {
28         super(bindingType, statement, children, augments);
29         this.originalType = requireNonNull(originalType);
30     }
31
32     @Override
33     public @NonNull CaseRuntimeType originalType() {
34         return originalType;
35     }
36 }