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%2FDataTree.java;h=ee9726a4506439f97142817aba7506e4380ebbd8;hp=01e2a29e4e9ee78ac13fc2eb16227b315bda999b;hb=9529cc0065c67c62aa00658537873a4f42e0812b;hpb=c3c49eaef5b1435b871f97eb060f8abdba5a6671 diff --git a/opendaylight/md-sal/sal-dom-broker/src/main/java/org/opendaylight/controller/md/sal/dom/store/impl/tree/DataTree.java b/opendaylight/md-sal/sal-dom-broker/src/main/java/org/opendaylight/controller/md/sal/dom/store/impl/tree/DataTree.java index 01e2a29e4e..ee9726a450 100644 --- a/opendaylight/md-sal/sal-dom-broker/src/main/java/org/opendaylight/controller/md/sal/dom/store/impl/tree/DataTree.java +++ b/opendaylight/md-sal/sal-dom-broker/src/main/java/org/opendaylight/controller/md/sal/dom/store/impl/tree/DataTree.java @@ -13,20 +13,20 @@ import org.opendaylight.yangtools.yang.model.api.SchemaContext; * Interface representing a data tree which can be modified in an MVCC fashion. */ public interface DataTree { - /** - * Take a read-only point-in-time snapshot of the tree. - * - * @return Data tree snapshot. - */ - DataTreeSnapshot takeSnapshot(); + /** + * Take a read-only point-in-time snapshot of the tree. + * + * @return Data tree snapshot. + */ + DataTreeSnapshot takeSnapshot(); - /** - * Make the data tree use a new schema context. The context will be used - * only by subsequent operations. - * - * @param newSchemaContext new SchemaContext - * @throws IllegalArgumentException if the new context is incompatible - */ + /** + * Make the data tree use a new schema context. The context will be used + * only by subsequent operations. + * + * @param newSchemaContext new SchemaContext + * @throws IllegalArgumentException if the new context is incompatible + */ void setSchemaContext(SchemaContext newSchemaContext); /**