Merge branch 'master' of ../controller
[yangtools.git] / yang / yang-data-api / src / main / java / org / opendaylight / yangtools / yang / data / api / schema / tree / spi / MutableTreeNode.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.tree.spi;
9
10 import org.eclipse.jdt.annotation.NonNull;
11 import org.opendaylight.yangtools.yang.data.api.YangInstanceIdentifier.PathArgument;
12 import org.opendaylight.yangtools.yang.data.api.schema.NormalizedNode;
13 import org.opendaylight.yangtools.yang.data.api.schema.tree.StoreTreeNode;
14
15 /**
16  * A mutable tree node. This is a transient view materialized from a pre-existing node. Modifications are isolated. Once
17  * this object is {@link #seal()}ed, any interactions with it will result in undefined behavior.
18  */
19 // FIXME: 5.0.0: Use @NonNullByDefault
20 public interface MutableTreeNode extends StoreTreeNode<TreeNode> {
21     /**
22      * Set the data component of the node.
23      *
24      * @param data New data component, may not be null.
25      * @throws NullPointerException if {@code data} is null
26      */
27     void setData(NormalizedNode<?, ?> data);
28
29     /**
30      * Set the new subtree version. This is typically invoked when the user
31      * has modified some of this node's children.
32      *
33      * @param subtreeVersion New subtree version.
34      * @throws NullPointerException if {@code subtreeVersion} is null
35      */
36     void setSubtreeVersion(Version subtreeVersion);
37
38     /**
39      * Add a new child node. This acts as add-or-replace operation, e.g. it
40      * succeeds even if a conflicting child is already present.
41      *
42      * @param child New child node.
43      * @throws NullPointerException if {@code child} is null
44      */
45     void addChild(TreeNode child);
46
47     /**
48      * Remove a child node. This acts as delete-or-nothing operation, e.g. it
49      * succeeds even if the corresponding child is not present.
50      *
51      * @param id Child identifier.
52      * @throws NullPointerException if {@code id} is null
53      */
54     void removeChild(PathArgument id);
55
56     /**
57      * Finish node modification and return a read-only view of this node. After
58      * this method is invoked, any further calls to this object's method result
59      * in undefined behavior.
60      *
61      * @return Read-only view of this node.
62      */
63     @NonNull TreeNode seal();
64 }