All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.cybergarage.upnp.xml.NodeData Maven / Gradle / Ivy

There is a newer version: 2.6.0
Show newest version
/******************************************************************
*
*	CyberUPnP for Java
*
*	Copyright (C) Satoshi Konno 2002-2003
*
*	File: ActionData.java
*
*	Revision;
*
*	03/28/03
*		- first revision.
*
******************************************************************/

package org.cybergarage.upnp.xml;

import org.cybergarage.xml.*;

public class NodeData
{
	public NodeData()
	{
		setNode(null);
	}

	////////////////////////////////////////////////
	// Node
	////////////////////////////////////////////////

	private Node node;
	
	public void setNode(Node node)
	{
		this.node = node;
	}
	
	public Node getNode()
	{
		return node;	
	}
}





© 2015 - 2024 Weber Informatics LLC | Privacy Policy