2 * Copyright (c) 2013 Cisco Systems, Inc. and others. All rights reserved.
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
8 package org.opendaylight.yangtools.yang.model.api;
11 * The ContainerSchemaNode is used to define an interior data node in the schema
12 * tree. There are two styles of containers, those that exist only for
13 * organizing the hierarchy of data nodes, and those whose presence in the
14 * configuration has an explicit meaning.
16 public interface ContainerSchemaNode extends DataNodeContainer,
17 AugmentationTarget, DataSchemaNode, NotificationNodeContainer, ActionNodeContainer, MustConstraintAware {
19 * Returns true if this container is marked as presence.
21 * @return true, if presence of this container has an explicit meaning,
24 boolean isPresenceContainer();