package at.gv.egovernment.moa.spss.api.impl; import org.w3c.dom.NodeList; import at.gv.egovernment.moa.spss.api.common.ContentXML; /** * Default implementation of ContentXML. * * @author Fatemeh Philippi * @version $Id$ */ public class ContentXMLImpl extends ContentImpl implements ContentXML { /** The nodes making up the XML content. */ private NodeList xmlContent; /** * Sets the nodes making up the XML content. * * @param xmlContent The XML content. */ public void setXMLContent(NodeList xmlContent) { this.xmlContent = xmlContent; } public NodeList getXMLContent() { return xmlContent; } /** * Gets the type of content. * * @return XML_CONTENT */ public int getContentType() { return XML_CONTENT; } }