X-Git-Url: https://git.opendaylight.org/gerrit/gitweb?p=controller.git;a=blobdiff_plain;f=opendaylight%2Fmd-sal%2Fsal-dom-broker%2Fsrc%2Fmain%2Fjava%2Forg%2Fopendaylight%2Fcontroller%2Fmd%2Fsal%2Fdom%2Fstore%2Fimpl%2Ftree%2FStoreTreeNode.java;h=d714f1cc85449d60967c0d87cc05c4282ec3d880;hp=52beaa7c616d046ea9793aa712b37f860c2d03cc;hb=ad38b2defabd924505f1624947ff626ad441f8e1;hpb=4f8166639477de8c1c9048baee2ba70003748756 diff --git a/opendaylight/md-sal/sal-dom-broker/src/main/java/org/opendaylight/controller/md/sal/dom/store/impl/tree/StoreTreeNode.java b/opendaylight/md-sal/sal-dom-broker/src/main/java/org/opendaylight/controller/md/sal/dom/store/impl/tree/StoreTreeNode.java index 52beaa7c61..d714f1cc85 100644 --- a/opendaylight/md-sal/sal-dom-broker/src/main/java/org/opendaylight/controller/md/sal/dom/store/impl/tree/StoreTreeNode.java +++ b/opendaylight/md-sal/sal-dom-broker/src/main/java/org/opendaylight/controller/md/sal/dom/store/impl/tree/StoreTreeNode.java @@ -10,17 +10,17 @@ package org.opendaylight.controller.md.sal.dom.store.impl.tree; import org.opendaylight.yangtools.yang.data.api.InstanceIdentifier.PathArgument; import com.google.common.base.Optional; + /** - * - * Tree node which contains references to it's leafs + * A tree node which has references to its child leaves. This are typically + * internal non-data leaves, such as containers, lists, etc. * * @param Final node type */ public interface StoreTreeNode> { /** - * - * Returns direct child of the node + * Returns a direct child of the node * * @param child Identifier of child * @return Optional with node if the child is existing, {@link Optional#absent()} otherwise.