Remove ModifyAction and related code
[yangtools.git] / yang / yang-data-impl / src / main / java / org / opendaylight / yangtools / yang / data / impl / schema / builder / api / CollectionNodeBuilder.java
1 /*
2  * Copyright (c) 2013 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.impl.schema.builder.api;
9
10 import java.util.Collection;
11 import org.eclipse.jdt.annotation.NonNull;
12 import org.opendaylight.yangtools.yang.data.api.YangInstanceIdentifier.NodeIdentifier;
13 import org.opendaylight.yangtools.yang.data.api.YangInstanceIdentifier.PathArgument;
14 import org.opendaylight.yangtools.yang.data.api.schema.NormalizedNode;
15
16 public interface CollectionNodeBuilder<V extends NormalizedNode<?, ?>, R extends NormalizedNode<NodeIdentifier, ?>>
17         extends NormalizedNodeContainerBuilder<NodeIdentifier, PathArgument, V, R> {
18
19     @Override
20     CollectionNodeBuilder<V, R> withValue(Collection<V> value);
21
22     @Override
23     CollectionNodeBuilder<V, R> withNodeIdentifier(NodeIdentifier nodeIdentifier);
24
25     @NonNull CollectionNodeBuilder<V, R> withChild(V child);
26
27     @NonNull CollectionNodeBuilder<V, R> withoutChild(PathArgument key);
28 }