Bug 1372 - toString methods in generated classes
[yangtools.git] / yang / yang-data-impl / src / main / java / org / opendaylight / yangtools / yang / data / impl / SimpleNodeModificationTOImpl.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 org.opendaylight.yangtools.yang.common.QName;
11 import org.opendaylight.yangtools.yang.data.api.CompositeNode;
12 import org.opendaylight.yangtools.yang.data.api.ModifyAction;
13
14 /**
15  * @author michal.rehak
16  * @param <T> type of node value
17  *
18  */
19 public class SimpleNodeModificationTOImpl<T> extends SimpleNodeTOImpl<T> {
20     private static final long serialVersionUID = 1L;
21
22     /**
23      * @param qname
24      * @param parent
25      * @param value
26      * @param modifyAction
27      */
28     public SimpleNodeModificationTOImpl(QName qname, CompositeNode parent,
29             T value, ModifyAction modifyAction) {
30         super(qname, parent, value);
31         setModificationAction(modifyAction);
32     }
33 }