railo.runtime.text.xml.struct
Class XMLDocumentStruct
java.lang.Object
railo.runtime.type.util.StructSupport
railo.runtime.text.xml.struct.XMLNodeStruct
railo.runtime.text.xml.struct.XMLDocumentStruct
- All Implemented Interfaces:
- Serializable, Cloneable, Map, Document, Node, Dumpable, Castable, XMLObject, XMLStruct, Collection, ForEachIteratorable, Iteratorable, Objects, Sizeable, Struct
public final class XMLDocumentStruct
- extends XMLNodeStruct
- implements Document
- See Also:
- Serialized Form
Nested classes/interfaces inherited from interface java.util.Map |
Map.Entry<K,V> |
Fields inherited from interface org.w3c.dom.Node |
ATTRIBUTE_NODE, CDATA_SECTION_NODE, COMMENT_NODE, DOCUMENT_FRAGMENT_NODE, DOCUMENT_NODE, DOCUMENT_POSITION_CONTAINED_BY, DOCUMENT_POSITION_CONTAINS, DOCUMENT_POSITION_DISCONNECTED, DOCUMENT_POSITION_FOLLOWING, DOCUMENT_POSITION_IMPLEMENTATION_SPECIFIC, DOCUMENT_POSITION_PRECEDING, DOCUMENT_TYPE_NODE, ELEMENT_NODE, ENTITY_NODE, ENTITY_REFERENCE_NODE, NOTATION_NODE, PROCESSING_INSTRUCTION_NODE, TEXT_NODE |
Methods inherited from class railo.runtime.text.xml.struct.XMLNodeStruct |
appendChild, castToBoolean, castToBooleanValue, castToDateTime, castToDateTime, castToDoubleValue, castToDoubleValue, castToString, castToString, clear, compareDocumentPosition, compareTo, compareTo, compareTo, compareTo, containsKey, entryIterator, equals, get, get, getAttributes, getBaseURI, getCaseSensitive, getChildNodes, getFeature, getFirstChild, getLastChild, getLocalName, getMap, getNamespaceURI, getNextSibling, getNodeName, getNodeType, getNodeValue, getOwnerDocument, getParentNode, getPrefix, getPreviousSibling, getTextContent, getUserData, getXMLNodeList, hasAttributes, hasChildNodes, insertBefore, isCaseSensitive, isDefaultNamespace, isEqualNode, isSameNode, isSupported, keyIterator, keys, keysAsStringIterator, lookupNamespaceURI, lookupPrefix, normalize, remove, removeChild, removeEL, replaceChild, set, setEL, setNodeValue, setPrefix, setTextContent, setUserData, size, toDumpData, toNode, valueIterator |
Methods inherited from class railo.runtime.type.util.StructSupport |
call, callWithNamedValues, clone, containsKey, containsKey, containsValue, entrySet, get, get, get, get, get, getIterator, hashCode, invalidKey, isEmpty, keySet, put, putAll, remove, set, set, setEL, setEL, sizeOf, toString, values |
Methods inherited from interface org.w3c.dom.Node |
appendChild, compareDocumentPosition, getAttributes, getBaseURI, getChildNodes, getFeature, getFirstChild, getLastChild, getLocalName, getNamespaceURI, getNextSibling, getNodeName, getNodeType, getNodeValue, getOwnerDocument, getParentNode, getPrefix, getPreviousSibling, getTextContent, getUserData, hasAttributes, hasChildNodes, insertBefore, isDefaultNamespace, isEqualNode, isSameNode, isSupported, lookupNamespaceURI, lookupPrefix, normalize, removeChild, replaceChild, setNodeValue, setPrefix, setTextContent, setUserData |
Methods inherited from interface java.util.Map |
containsKey, containsValue, entrySet, get, hashCode, isEmpty, keySet, put, putAll, remove, values |
getImplementation
public DOMImplementation getImplementation()
- Specified by:
getImplementation
in interface Document
createDocumentFragment
public DocumentFragment createDocumentFragment()
- Specified by:
createDocumentFragment
in interface Document
getDoctype
public DocumentType getDoctype()
- Specified by:
getDoctype
in interface Document
getDocumentElement
public Element getDocumentElement()
- Specified by:
getDocumentElement
in interface Document
createAttribute
public Attr createAttribute(String name)
throws DOMException
- Specified by:
createAttribute
in interface Document
- Throws:
DOMException
createCDATASection
public CDATASection createCDATASection(String data)
throws DOMException
- Specified by:
createCDATASection
in interface Document
- Throws:
DOMException
createComment
public Comment createComment(String data)
- Specified by:
createComment
in interface Document
createElement
public Element createElement(String tagName)
throws DOMException
- Specified by:
createElement
in interface Document
- Throws:
DOMException
getElementById
public Element getElementById(String elementId)
- Specified by:
getElementById
in interface Document
createEntityReference
public EntityReference createEntityReference(String name)
throws DOMException
- Specified by:
createEntityReference
in interface Document
- Throws:
DOMException
importNode
public Node importNode(Node importedNode,
boolean deep)
throws DOMException
- Specified by:
importNode
in interface Document
- Throws:
DOMException
getElementsByTagName
public NodeList getElementsByTagName(String tagname)
- Specified by:
getElementsByTagName
in interface Document
createTextNode
public Text createTextNode(String data)
- Specified by:
createTextNode
in interface Document
createAttributeNS
public Attr createAttributeNS(String namespaceURI,
String qualifiedName)
throws DOMException
- Specified by:
createAttributeNS
in interface Document
- Throws:
DOMException
createElementNS
public Element createElementNS(String namespaceURI,
String qualifiedName)
throws DOMException
- Specified by:
createElementNS
in interface Document
- Throws:
DOMException
getElementsByTagNameNS
public NodeList getElementsByTagNameNS(String namespaceURI,
String localName)
- Specified by:
getElementsByTagNameNS
in interface Document
createProcessingInstruction
public ProcessingInstruction createProcessingInstruction(String target,
String data)
throws DOMException
- Specified by:
createProcessingInstruction
in interface Document
- Throws:
DOMException
adoptNode
public Node adoptNode(Node arg0)
throws DOMException
- Specified by:
adoptNode
in interface Document
- Throws:
DOMException
getDocumentURI
public String getDocumentURI()
- Specified by:
getDocumentURI
in interface Document
getDomConfig
public DOMConfiguration getDomConfig()
- Specified by:
getDomConfig
in interface Document
getInputEncoding
public String getInputEncoding()
- Specified by:
getInputEncoding
in interface Document
getStrictErrorChecking
public boolean getStrictErrorChecking()
- Specified by:
getStrictErrorChecking
in interface Document
getXmlEncoding
public String getXmlEncoding()
- Specified by:
getXmlEncoding
in interface Document
getXmlStandalone
public boolean getXmlStandalone()
- Specified by:
getXmlStandalone
in interface Document
getXmlVersion
public String getXmlVersion()
- Specified by:
getXmlVersion
in interface Document
normalizeDocument
public void normalizeDocument()
- Specified by:
normalizeDocument
in interface Document
renameNode
public Node renameNode(Node arg0,
String arg1,
String arg2)
throws DOMException
- Specified by:
renameNode
in interface Document
- Throws:
DOMException
setDocumentURI
public void setDocumentURI(String arg0)
- Specified by:
setDocumentURI
in interface Document
setStrictErrorChecking
public void setStrictErrorChecking(boolean arg0)
- Specified by:
setStrictErrorChecking
in interface Document
setXmlStandalone
public void setXmlStandalone(boolean arg0)
throws DOMException
- Specified by:
setXmlStandalone
in interface Document
- Throws:
DOMException
setXmlVersion
public void setXmlVersion(String arg0)
throws DOMException
- Specified by:
setXmlVersion
in interface Document
- Throws:
DOMException
duplicate
public Collection duplicate(boolean deepCopy)
- Specified by:
duplicate
in interface Collection
- Overrides:
duplicate
in class XMLNodeStruct
cloneNode
public Node cloneNode(boolean deep)
- Specified by:
cloneNode
in interface Node
- Overrides:
cloneNode
in class XMLNodeStruct
Copyright © 2012 Railo