BUG-6533: add immutable implementations of yang.model.api
[yangtools.git] / yang / yang-model-immutable / src / main / java / org / opendaylight / yangtools / yang / model / immutable / CommonContainerSchemaNode.java
1 /*
2  * Copyright (c) 2016 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.immutable;
9
10 import org.opendaylight.yangtools.yang.model.api.ContainerSchemaNode;
11
12 /**
13  * Common abstract class capturing {@link AbstractDataNodeContainer} and {@link ContainerSchemaNode}.
14  *
15  * @author Robert Varga
16  */
17 abstract class CommonContainerSchemaNode extends AbstractDataNodeContainer implements ContainerSchemaNode {
18
19 }