Merge branch 'master' of ../controller
[yangtools.git] / yang / yang-data-api / src / main / java / org / opendaylight / yangtools / yang / data / api / schema / DataContainerNode.java
1 /*
2  * Copyright (c) 2014 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.data.api.schema;
9
10 import java.util.Collection;
11 import org.opendaylight.yangtools.yang.data.api.YangInstanceIdentifier.PathArgument;
12
13 /**
14  * Abstract node which does not have value but contains valid {@link DataContainerChild} nodes.
15  * Schema of this node is described by instance of {@link org.opendaylight.yangtools.yang.model.api.DataNodeContainer}.
16  *
17  * <p>
18  * <h2>Implementation notes</h2>
19  * This interface should not be implemented directly, but rather implementing one of it's subclasses
20  * <ul>
21  * <li>{@link ContainerNode}
22  * <li>{@link MapEntryNode}
23  * <li>{@link UnkeyedListEntryNode}
24  * <li>{@link ChoiceNode}
25  * <li>{@link AugmentationNode}
26  * </ul>
27  *
28  * @param <K> {@link PathArgument} which identifies instance of {@link DataContainerNode}
29  */
30 public interface DataContainerNode<K extends PathArgument> extends
31         NormalizedNodeContainer<K, PathArgument, DataContainerChild<? extends PathArgument, ?>> {
32     /**
33      * Returns iteration of all child nodes.
34      * Order of returned child nodes may be defined by subinterfaces.
35      *
36      * <p>
37      * <b>Implementation Notes:</b>
38      * All nodes returned in this iterable, MUST also be accessible via
39      * {@link #getChild(PathArgument)} using their associated identifier.
40      *
41      * @return Iteration of all child nodes
42      */
43     @Override
44     Collection<DataContainerChild<? extends PathArgument, ?>> getValue();
45 }