Merge "Fix for Bug 511 (yang)"
[yangtools.git] / yang / yang-data-impl / src / main / java / org / opendaylight / yangtools / yang / data / impl / schema / builder / impl / AbstractImmutableNormalizedNodeBuilder.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.impl;
9
10 import org.opendaylight.yangtools.yang.data.api.InstanceIdentifier;
11 import org.opendaylight.yangtools.yang.data.api.schema.NormalizedNode;
12 import org.opendaylight.yangtools.yang.data.impl.schema.builder.api.NormalizedNodeBuilder;
13
14 abstract class AbstractImmutableNormalizedNodeBuilder<I extends InstanceIdentifier.PathArgument, V, R extends NormalizedNode<I, ?>>
15         implements NormalizedNodeBuilder<I,V,R> {
16
17     protected V value;
18     protected I nodeIdentifier;
19
20     @Override
21     public NormalizedNodeBuilder<I,V,R> withValue(V value) {
22         this.value = value;
23         return this;
24     }
25
26
27     @Override
28     public NormalizedNodeBuilder<I,V,R> withNodeIdentifier(I nodeIdentifier) {
29         this.nodeIdentifier = nodeIdentifier;
30         return this;
31     }
32
33 }