e7ebc0e186bf40ad265ead77c7e29664d7479daf
[yangtools.git] / yang / yang-model-api / src / main / java / org / opendaylight / yangtools / yang / model / api / ContainerSchemaNode.java
1 /*
2  * Copyright (c) 2013 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.api;
9
10
11 /**
12  * The ContainerSchemaNode is used to define an interior data node in the schema
13  * tree. There are two styles of containers, those that exist only for
14  * organizing the hierarchy of data nodes, and those whose presence in the
15  * configuration has an explicit meaning.
16  */
17 public interface ContainerSchemaNode extends DataNodeContainer,
18         AugmentationTarget, DataSchemaNode, NotificationNodeContainer, ActionNodeContainer {
19
20     /**
21      * @return true, if presence of this container has an explicit meaning,
22      *         false otherwise
23      */
24     boolean isPresenceContainer();
25
26 }