2 * Copyright (c) 2013 Cisco Systems, Inc. and others. All rights reserved.
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
8 package org.opendaylight.yangtools.yang.data.api.schema.builder;
10 import com.google.common.annotations.Beta;
11 import java.util.Collection;
12 import org.eclipse.jdt.annotation.NonNull;
13 import org.opendaylight.yangtools.yang.data.api.YangInstanceIdentifier.PathArgument;
14 import org.opendaylight.yangtools.yang.data.api.schema.NormalizedNode;
17 public interface NormalizedNodeContainerBuilder<I extends PathArgument, K extends PathArgument,
18 V extends NormalizedNode, R extends NormalizedNode> extends NormalizedNodeBuilder<I, Collection<V>, R> {
21 NormalizedNodeContainerBuilder<I, K, V, R> withNodeIdentifier(I nodeIdentifier);
24 NormalizedNodeContainerBuilder<I, K, V, R> withValue(Collection<V> value);
26 @NonNull NormalizedNodeContainerBuilder<I, K, V, R> addChild(V child);
28 @NonNull NormalizedNodeContainerBuilder<I, K, V, R> removeChild(K key);