FileDocCategorySizeDatePackage
DefaultNode.javaAPI DocApache Xerces 3.0.15509Fri Sep 14 20:33:52 BST 2007org.apache.xerces.impl.xs.opti

DefaultNode

public class DefaultNode extends Object implements Node
xerces.internal
author
Rahul Srivastava, Sun Microsystems Inc.
version
$Id: DefaultNode.java 446728 2006-09-15 20:43:46Z mrglavas $

Fields Summary
Constructors Summary
public DefaultNode()

    
Methods Summary
public org.w3c.dom.NodeappendChild(org.w3c.dom.Node newChild)

    	throw new DOMException(DOMException.NOT_SUPPORTED_ERR, "Method not supported");
    
public org.w3c.dom.NodecloneNode(boolean deep)

    	return null;
    
public shortcompareDocumentPosition(org.w3c.dom.Node other)

        throw new DOMException(DOMException.NOT_SUPPORTED_ERR, "Method not supported");
    
public org.w3c.dom.NamedNodeMapgetAttributes()

    	return null;
    
public java.lang.StringgetBaseURI()
DOM Level 3

        return null;
    
public org.w3c.dom.NodeListgetChildNodes()

    	return null;
    
public java.lang.ObjectgetFeature(java.lang.String feature, java.lang.String version)

        return null;
    
public org.w3c.dom.NodegetFirstChild()

    	return null;
    
public org.w3c.dom.NodegetLastChild()

    	return null;
    
public java.lang.StringgetLocalName()

    	return null;
    
public java.lang.StringgetNamespaceURI()

    	return null;
    
public org.w3c.dom.NodegetNextSibling()

    	return null;
    
public java.lang.StringgetNodeName()

    	return null;
    
public shortgetNodeType()

    	return -1;
    
public java.lang.StringgetNodeValue()

    	return null;
    
public org.w3c.dom.DocumentgetOwnerDocument()

    	return null;
    
public org.w3c.dom.NodegetParentNode()

    	return null;
    
public java.lang.StringgetPrefix()

    	return null;
    
public org.w3c.dom.NodegetPreviousSibling()

    	return null;
    
public java.lang.StringgetTextContent()

        throw new DOMException(DOMException.NOT_SUPPORTED_ERR, "Method not supported");
    
public java.lang.ObjectgetUserData(java.lang.String key)

        return null;
    
public booleanhasAttributes()

    	return false;
    
public booleanhasChildNodes()

    	return false;
    
public org.w3c.dom.NodeinsertBefore(org.w3c.dom.Node newChild, org.w3c.dom.Node refChild)

    	throw new DOMException(DOMException.NOT_SUPPORTED_ERR, "Method not supported");
    
public booleanisDefaultNamespace(java.lang.String namespaceURI)

        throw new DOMException(DOMException.NOT_SUPPORTED_ERR, "Method not supported");
    
public booleanisEqualNode(org.w3c.dom.Node arg)

       throw new DOMException(DOMException.NOT_SUPPORTED_ERR, "Method not supported");

    
public booleanisSameNode(org.w3c.dom.Node other)

        throw new DOMException(DOMException.NOT_SUPPORTED_ERR, "Method not supported");

    
public booleanisSupported(java.lang.String feature, java.lang.String version)

    	return false;
    
public java.lang.StringlookupNamespaceURI(java.lang.String prefix)

        throw new DOMException(DOMException.NOT_SUPPORTED_ERR, "Method not supported");
    
public java.lang.StringlookupPrefix(java.lang.String namespaceURI)

        throw new DOMException(DOMException.NOT_SUPPORTED_ERR, "Method not supported");
                                        
public voidnormalize()

    
public org.w3c.dom.NoderemoveChild(org.w3c.dom.Node oldChild)

    	throw new DOMException(DOMException.NOT_SUPPORTED_ERR, "Method not supported");
    
public org.w3c.dom.NodereplaceChild(org.w3c.dom.Node newChild, org.w3c.dom.Node oldChild)

    	throw new DOMException(DOMException.NOT_SUPPORTED_ERR, "Method not supported");
    
public voidsetNodeValue(java.lang.String nodeValue)

    	throw new DOMException(DOMException.NOT_SUPPORTED_ERR, "Method not supported");
    
public voidsetPrefix(java.lang.String prefix)

    	throw new DOMException(DOMException.NOT_SUPPORTED_ERR, "Method not supported");
    
public voidsetTextContent(java.lang.String textContent)

        throw new DOMException(DOMException.NOT_SUPPORTED_ERR, "Method not supported");
    
public java.lang.ObjectsetUserData(java.lang.String key, java.lang.Object data, org.w3c.dom.UserDataHandler handler)

       throw new DOMException(DOMException.NOT_SUPPORTED_ERR, "Method not supported");