Merge "BUG-1275: teach NormalizedNode builders about size hints"
[yangtools.git] / yang / yang-data-impl / src / main / java / org / opendaylight / yangtools / yang / data / impl / CompositeNodeModificationTOImpl.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;
9
10 import java.util.List;
11
12 import org.opendaylight.yangtools.yang.common.QName;
13 import org.opendaylight.yangtools.yang.data.api.CompositeNode;
14 import org.opendaylight.yangtools.yang.data.api.ModifyAction;
15 import org.opendaylight.yangtools.yang.data.api.Node;
16
17 /**
18  * @author michal.rehak
19  *
20  */
21 public class CompositeNodeModificationTOImpl extends CompositeNodeTOImpl {
22     private static final long serialVersionUID = 1L;
23
24     /**
25      * @param qname
26      * @param parent
27      * @param value
28      * @param modifyAction
29      */
30     public CompositeNodeModificationTOImpl(QName qname, CompositeNode parent,
31             List<Node<?>> value, ModifyAction modifyAction) {
32         super(qname, parent, value);
33         super.setModificationAction(modifyAction);
34     }
35 }