feat2.template.impl
クラス DOMDocumentImpl
java.lang.Object
feat2.template.impl.DOMNodeImpl
feat2.template.impl.DOMDocumentImpl
- すべての実装インタフェース:
- org.w3c.dom.Document, HTMLConvertibleNode, org.w3c.dom.Node
- public class DOMDocumentImpl
- extends DOMNodeImpl
- implements org.w3c.dom.Document
DOM APIのDocumentの実装。
- 作成者:
- SUGIMOTO Ken-ichi
インタフェース 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 |
クラス feat2.template.impl.DOMNodeImpl から継承したメソッド |
appendChild, cloneNode, convertHTML, getChildNodes, getFirstChild, getLastChild, getNamespaceURI, getNextSibling, getOwnerDocument, getParentNode, getPrefix, getPreviousSibling, hasChildNodes, insertBefore, isSupported, normalize, removeChild, replaceChild, setPrefix |
クラス java.lang.Object から継承したメソッド |
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
インタフェース org.w3c.dom.Node から継承したメソッド |
appendChild, cloneNode, getChildNodes, getFirstChild, getLastChild, getNamespaceURI, getNextSibling, getOwnerDocument, getParentNode, getPrefix, getPreviousSibling, hasChildNodes, insertBefore, isSupported, normalize, removeChild, replaceChild, setPrefix |
getAttributes
public org.w3c.dom.NamedNodeMap getAttributes()
- 定義:
- インタフェース
org.w3c.dom.Node
内の getAttributes
getLocalName
public java.lang.String getLocalName()
- 定義:
- インタフェース
org.w3c.dom.Node
内の getLocalName
getNodeValue
public java.lang.String getNodeValue()
throws org.w3c.dom.DOMException
- 定義:
- インタフェース
org.w3c.dom.Node
内の getNodeValue
- 例外:
org.w3c.dom.DOMException
hasAttributes
public boolean hasAttributes()
- 定義:
- インタフェース
org.w3c.dom.Node
内の hasAttributes
setNodeValue
public void setNodeValue(java.lang.String nodeValue)
throws org.w3c.dom.DOMException
- 定義:
- インタフェース
org.w3c.dom.Node
内の setNodeValue
- 例外:
org.w3c.dom.DOMException
getNodeType
public short getNodeType()
- 定義:
- インタフェース
org.w3c.dom.Node
内の getNodeType
getNodeName
public java.lang.String getNodeName()
- 定義:
- インタフェース
org.w3c.dom.Node
内の getNodeName
getImplementation
public org.w3c.dom.DOMImplementation getImplementation()
- 定義:
- インタフェース
org.w3c.dom.Document
内の getImplementation
createDocumentFragment
public org.w3c.dom.DocumentFragment createDocumentFragment()
- 定義:
- インタフェース
org.w3c.dom.Document
内の createDocumentFragment
getDoctype
public org.w3c.dom.DocumentType getDoctype()
- 定義:
- インタフェース
org.w3c.dom.Document
内の getDoctype
getDocumentElement
public org.w3c.dom.Element getDocumentElement()
- 定義:
- インタフェース
org.w3c.dom.Document
内の getDocumentElement
createAttribute
public org.w3c.dom.Attr createAttribute(java.lang.String name)
throws org.w3c.dom.DOMException
- 定義:
- インタフェース
org.w3c.dom.Document
内の createAttribute
- 例外:
org.w3c.dom.DOMException
createCDATASection
public org.w3c.dom.CDATASection createCDATASection(java.lang.String data)
throws org.w3c.dom.DOMException
- 定義:
- インタフェース
org.w3c.dom.Document
内の createCDATASection
- 例外:
org.w3c.dom.DOMException
createComment
public org.w3c.dom.Comment createComment(java.lang.String data)
- 定義:
- インタフェース
org.w3c.dom.Document
内の createComment
createElement
public org.w3c.dom.Element createElement(java.lang.String tagName)
throws org.w3c.dom.DOMException
- 定義:
- インタフェース
org.w3c.dom.Document
内の createElement
- 例外:
org.w3c.dom.DOMException
getElementById
public org.w3c.dom.Element getElementById(java.lang.String elementId)
- 定義:
- インタフェース
org.w3c.dom.Document
内の getElementById
createEntityReference
public org.w3c.dom.EntityReference createEntityReference(java.lang.String name)
throws org.w3c.dom.DOMException
- 定義:
- インタフェース
org.w3c.dom.Document
内の createEntityReference
- 例外:
org.w3c.dom.DOMException
importNode
public org.w3c.dom.Node importNode(org.w3c.dom.Node importedNode,
boolean deep)
throws org.w3c.dom.DOMException
- 定義:
- インタフェース
org.w3c.dom.Document
内の importNode
- 例外:
org.w3c.dom.DOMException
getElementsByTagName
public org.w3c.dom.NodeList getElementsByTagName(java.lang.String name)
- 定義:
- インタフェース
org.w3c.dom.Document
内の getElementsByTagName
createTextNode
public org.w3c.dom.Text createTextNode(java.lang.String data)
- 定義:
- インタフェース
org.w3c.dom.Document
内の createTextNode
createAttributeNS
public org.w3c.dom.Attr createAttributeNS(java.lang.String namespaceURI,
java.lang.String qualifiedName)
throws org.w3c.dom.DOMException
- 定義:
- インタフェース
org.w3c.dom.Document
内の createAttributeNS
- 例外:
org.w3c.dom.DOMException
createElementNS
public org.w3c.dom.Element createElementNS(java.lang.String namespaceURI,
java.lang.String qualifiedName)
throws org.w3c.dom.DOMException
- 定義:
- インタフェース
org.w3c.dom.Document
内の createElementNS
- 例外:
org.w3c.dom.DOMException
getElementsByTagNameNS
public org.w3c.dom.NodeList getElementsByTagNameNS(java.lang.String namespaceURI,
java.lang.String localName)
- 定義:
- インタフェース
org.w3c.dom.Document
内の getElementsByTagNameNS
createProcessingInstruction
public org.w3c.dom.ProcessingInstruction createProcessingInstruction(java.lang.String target,
java.lang.String data)
throws org.w3c.dom.DOMException
- 定義:
- インタフェース
org.w3c.dom.Document
内の createProcessingInstruction
- 例外:
org.w3c.dom.DOMException