org.jbind.xml.dom3.types
Interface IDomNode

All Superinterfaces:
IDomObject, IHasLocation, org.w3c.dom.Node
All Known Subinterfaces:
IDomAttr, IDomAttrOrElm, IDomCDataSection, IDomCharacterData, IDomComment, IDomDocument, IDomDocumentFragment, IDomDocumentType, IDomElement, IDomEntity, IDomEntityReference, IDomNotation, IDomParent, IDomProcessingInstruction, IDomText
All Known Implementing Classes:
DomAttr, DomAttrOrElm, DomCDataSection, DomCharacterData, DomComment, DomDocument, DomDocumentFragment, DomDocumentType, DomElement, DomEntity, DomEntityReference, DomNode, DomNotation, DomProcessingInstruction, DomText

public interface IDomNode
extends org.w3c.dom.Node, IDomObject, IHasLocation


Field Summary
 
Fields inherited from interface org.w3c.dom.Node
ATTRIBUTE_NODE, CDATA_SECTION_NODE, COMMENT_NODE, DOCUMENT_FRAGMENT_NODE, DOCUMENT_NODE, DOCUMENT_TYPE_NODE, ELEMENT_NODE, ENTITY_NODE, ENTITY_REFERENCE_NODE, NOTATION_NODE, PROCESSING_INSTRUCTION_NODE, TEXT_NODE
 
Method Summary
 void accept(IDomVisitor aVisitor)
           
 java.lang.String getTextContent()
           
 org.w3c.dom.Node insertAfter(org.w3c.dom.Node newChild, org.w3c.dom.Node refChild)
           
 java.lang.String lookupNamespaceURI(java.lang.String prefix)
           
 void setLocation(ILocation aLocation)
           
 void setPrefixToNamespaceMapping(java.util.Map aMap)
           
 void setTextContent(ITextContentProvider aProvider)
           
 void setTextContent(java.lang.String textContent)
           
 
Methods inherited from interface org.w3c.dom.Node
appendChild, cloneNode, getAttributes, getChildNodes, getFirstChild, getLastChild, getLocalName, getNamespaceURI, getNextSibling, getNodeName, getNodeType, getNodeValue, getOwnerDocument, getParentNode, getPrefix, getPreviousSibling, hasAttributes, hasChildNodes, insertBefore, isSupported, normalize, removeChild, replaceChild, setNodeValue, setPrefix
 
Methods inherited from interface org.jbind.xml.dom3.types.IDomObject
getOwnerDocument, isReadOnly
 
Methods inherited from interface org.jbind.xml.base.IHasLocation
getLocation
 

Method Detail

insertAfter

public org.w3c.dom.Node insertAfter(org.w3c.dom.Node newChild,
                                    org.w3c.dom.Node refChild)
                             throws org.w3c.dom.DOMException
Throws:
org.w3c.dom.DOMException

accept

public void accept(IDomVisitor aVisitor)

setLocation

public void setLocation(ILocation aLocation)

getTextContent

public java.lang.String getTextContent()
                                throws org.w3c.dom.DOMException
Throws:
org.w3c.dom.DOMException

setTextContent

public void setTextContent(java.lang.String textContent)
                    throws org.w3c.dom.DOMException
Throws:
org.w3c.dom.DOMException

setTextContent

public void setTextContent(ITextContentProvider aProvider)

lookupNamespaceURI

public java.lang.String lookupNamespaceURI(java.lang.String prefix)

setPrefixToNamespaceMapping

public void setPrefixToNamespaceMapping(java.util.Map aMap)