/* * Copyright (c) 2013 Cisco Systems, Inc. and others. All rights reserved. * * This program and the accompanying materials are made available under the * terms of the Eclipse Public License v1.0 which accompanies this distribution, * and is available at http://www.eclipse.org/legal/epl-v10.html */ package org.opendaylight.controller.yang.data.impl; import org.opendaylight.controller.yang.common.QName; import org.opendaylight.controller.yang.data.api.CompositeNode; import org.opendaylight.controller.yang.data.api.SimpleNode; /** * @author michal.rehak * @param type of simple node value * */ public class SimpleNodeTOImpl extends AbstractNodeTO implements SimpleNode { /** * @param qname * @param parent * @param value */ public SimpleNodeTOImpl(QName qname, CompositeNode parent, T value) { super(qname, parent, value); } }