package at.gv.egovernment.moa.spss.server.iaik.xml; import org.w3c.dom.NodeList; import iaik.server.modules.xml.XMLNodeListDataObject; /** * A DataObject containing a list of DOM nodes. * * @author Patrick Peck * @version $Id$ */ public class XMLNodeListDataObjectImpl extends DataObjectImpl implements XMLNodeListDataObject { /** The nodes contained in this XMLNodeListDataObject. */ private NodeList nodeList; /** * Create a new XMLNodeListDataObjectImpl. * * @param nodeList The list of DOM nodes contained in this * XMLNodeListDataObject. */ public XMLNodeListDataObjectImpl(NodeList nodeList) { setNodeList(nodeList); } /** * Set the list of DOM nodes contained in this * XMLNodeListDataObject. * * @param nodeList The list of DOM nodes to set. */ public void setNodeList(NodeList nodeList) { this.nodeList = nodeList; } /** * @see iaik.server.modules.xml.XMLNodeListDataObject#getNodeList() */ public NodeList getNodeList() { return nodeList; } }