このページはEtoJ逐語翻訳フィルタによって翻訳生成されました。

翻訳前ページへ


Interface XElement
Language

The 解放する/自由な and Open 生産性 控訴
解放(する)d: Apache OpenOffice 4.1.15

API

SDK

Tips ‘n’ Tricks

Miscellaneous


:: com :: sun :: 星/主役にする :: xml :: dom ::

interface XElement
Base Interfaces
XElementXNode

XNode
(言及/関連d interface's 要約:)
The 最初の/主要な dom datatype

Methods' 要約
getAttribute Retrieves an せいにする value by 指名する.  
getAttributeNode Retrieves an せいにする node by 指名する.  
getAttributeNodeNS Retrieves an Attr node by 地元の 指名する and namespace URI.  
getAttributeNS Retrieves an せいにする value by 地元の 指名する and namespace URI.  
getElementsByTagName Returns a NodeList of all 子孫 Elements with a given tag 指名する, in the order in which they are 遭遇(する)d in a preorder traversal of this Element tree.  
getElementsByTagNameNS Returns a NodeList of all the 子孫 Elements with a given 地元の 指名する and namespace URI in the order in which they are 遭遇(する)d in a preorder traversal of this Element tree.  
getTagName The 指名する of the element.  
hasAttribute Returns true when an せいにする with a given 指名する is 明示するd on this element or has a default value, 誤った さもなければ.  
hasAttributeNS Returns true when an せいにする with a given 地元の 指名する and namespace URI is 明示するd on this element or has a default value, 誤った さもなければ.  
removeAttribute 除去するs an せいにする by 指名する. Throws: DOMException - NO_MODIFICATION_ALLOWED_ERR: Raised if this node is readonly.  
removeAttributeNode 除去するs the 明示するd せいにする node. Throws: DOMException - NO_MODIFICATION_ALLOWED_ERR: Raised if this node is readonly. NOT_FOUND_ERR: Raised if oldAttr is not an せいにする of the element.  
removeAttributeNS 除去するs an せいにする by 地元の 指名する and namespace URI. Throws: DOMException - NO_MODIFICATION_ALLOWED_ERR: Raised if this node is readonly.  
setAttribute 追加するs a new せいにする. Throws: DOMException - INVALID_CHARACTER_ERR: Raised if the 明示するd 指名する 含む/封じ込めるs an 違法な character. NO_MODIFICATION_ALLOWED_ERR: Raised if this node is readonly.  
setAttributeNode 追加するs a new せいにする node. Throws: DOMException - WRONG_DOCUMENT_ERR: Raised if newAttr was created from a different 文書 than the one that created the element. NO_MODIFICATION_ALLOWED_ERR: Raised if this node is readonly. INUSE_ATTRIBUTE_ERR: Raised if newAttr is already an せいにする of another Element 反対する. The DOM 使用者 must explicitly clone Attr nodes to 再使用する them in other elements.  
setAttributeNodeNS 追加するs a new せいにする. Throws: DOMException - WRONG_DOCUMENT_ERR: Raised if newAttr was created from a different 文書 than the one that created the element. NO_MODIFICATION_ALLOWED_ERR: Raised if this node is readonly. INUSE_ATTRIBUTE_ERR: Raised if newAttr is already an せいにする of another Element 反対する. The DOM 使用者 must explicitly clone Attr nodes to 再使用する them in other elements. NOT_SUPPORTED_ERR: Always thrown if the 現在の 文書 does not support the "XML" feature, since namespaces were defined by XML.  
setAttributeNS 追加するs a new せいにする. Throws: DOMException - INVALID_CHARACTER_ERR: Raised if the 明示するd qualified 指名する 含む/封じ込めるs an 違法な character, per the XML 1.0 specification . NO_MODIFICATION_ALLOWED_ERR: Raised if this node is readonly. NAMESPACE_ERR: Raised if the qualifiedName is malformed per the Namespaces in XML specification, if the qualifiedName has a prefix and the namespaceURI is null, if the qualifiedName has a prefix that is "xml" and the namespaceURI is different from " http://www.w3.org/XML/1998/namespace", or if the qualifiedName, or its prefix, is "xmlns" and the namespaceURI is different from " http://www.w3.org/2000/xmlns/". NOT_SUPPORTED_ERR: Always thrown if the 現在の 文書 does not support the "XML" feature, since namespaces were defined by XML.  
Methods' 詳細(に述べる)s
getAttribute
string
getAttribute( [in] string  指名する );

Description
Retrieves an せいにする value by 指名する.
getAttributeNode
XAttr
getAttributeNode( [in] string  指名する );

Description
Retrieves an せいにする node by 指名する.
getAttributeNodeNS
XAttr
getAttributeNodeNS( [in] string  namespaceURI,
[in] string  localName );

Description
Retrieves an Attr node by 地元の 指名する and namespace URI.
getAttributeNS
string
getAttributeNS( [in] string  namespaceURI,
[in] string  localName );

Description
Retrieves an せいにする value by 地元の 指名する and namespace URI.
getElementsByTagName
XNodeList
getElementsByTagName( [in] string  指名する );

Description
Returns a NodeList of all 子孫 Elements with a given tag 指名する, in the order in which they are 遭遇(する)d in a preorder traversal of this Element tree.
getElementsByTagNameNS
XNodeList
getElementsByTagNameNS( [in] string  namespaceURI,
[in] string  localName );

Description
Returns a NodeList of all the 子孫 Elements with a given 地元の 指名する and namespace URI in the order in which they are 遭遇(する)d in a preorder traversal of this Element tree.
getTagName
string
getTagName();

Description
The 指名する of the element.
hasAttribute
boolean
hasAttribute( [in] string  指名する );

Description
Returns true when an せいにする with a given 指名する is 明示するd on this element or has a default value, 誤った さもなければ.
hasAttributeNS
boolean
hasAttributeNS( [in] string  namespaceURI,
[in] string  localName );

Description
Returns true when an せいにする with a given 地元の 指名する and namespace URI is 明示するd on this element or has a default value, 誤った さもなければ.
removeAttribute
無効の
removeAttribute( [in] string  指名する )
raises( DOMException );

Description
除去するs an せいにする by 指名する. Throws: DOMException - NO_MODIFICATION_ALLOWED_ERR: Raised if this node is readonly.
removeAttributeNode
XAttr
removeAttributeNode( [in] XAttr  oldAttr )
raises( DOMException );

Description
除去するs the 明示するd せいにする node. Throws: DOMException - NO_MODIFICATION_ALLOWED_ERR: Raised if this node is readonly. NOT_FOUND_ERR: Raised if oldAttr is not an せいにする of the element.
removeAttributeNS
無効の
removeAttributeNS( [in] string  namespaceURI,
[in] string  localName )
raises( DOMException );

Description
除去するs an せいにする by 地元の 指名する and namespace URI. Throws: DOMException - NO_MODIFICATION_ALLOWED_ERR: Raised if this node is readonly.
setAttribute
無効の
setAttribute( [in] string  指名する,
[in] string  value )
raises( DOMException );

Description
追加するs a new せいにする. Throws: DOMException - INVALID_CHARACTER_ERR: Raised if the 明示するd 指名する 含む/封じ込めるs an 違法な character. NO_MODIFICATION_ALLOWED_ERR: Raised if this node is readonly.
setAttributeNode
XAttr
setAttributeNode( [in] XAttr  newAttr )
raises( DOMException );

Description
追加するs a new せいにする node. Throws: DOMException - WRONG_DOCUMENT_ERR: Raised if newAttr was created from a different 文書 than the one that created the element. NO_MODIFICATION_ALLOWED_ERR: Raised if this node is readonly. INUSE_ATTRIBUTE_ERR: Raised if newAttr is already an せいにする of another Element 反対する. The DOM 使用者 must explicitly clone Attr nodes to 再使用する them in other elements.
setAttributeNodeNS
XAttr
setAttributeNodeNS( [in] XAttr  newAttr )
raises( DOMException );

Description
追加するs a new せいにする. Throws: DOMException - WRONG_DOCUMENT_ERR: Raised if newAttr was created from a different 文書 than the one that created the element. NO_MODIFICATION_ALLOWED_ERR: Raised if this node is readonly. INUSE_ATTRIBUTE_ERR: Raised if newAttr is already an せいにする of another Element 反対する. The DOM 使用者 must explicitly clone Attr nodes to 再使用する them in other elements. NOT_SUPPORTED_ERR: Always thrown if the 現在の 文書 does not support the "XML" feature, since namespaces were defined by XML.
setAttributeNS
無効の
setAttributeNS( [in] string  namespaceURI,
[in] string  qualifiedName,
[in] string  value )
raises( DOMException );

Description
追加するs a new せいにする. Throws: DOMException - INVALID_CHARACTER_ERR: Raised if the 明示するd qualified 指名する 含む/封じ込めるs an 違法な character, per the XML 1.0 specification . NO_MODIFICATION_ALLOWED_ERR: Raised if this node is readonly. NAMESPACE_ERR: Raised if the qualifiedName is malformed per the Namespaces in XML specification, if the qualifiedName has a prefix and the namespaceURI is null, if the qualifiedName has a prefix that is "xml" and the namespaceURI is different from " http://www.w3.org/XML/1998/namespace", or if the qualifiedName, or its prefix, is "xmlns" and the namespaceURI is different from " http://www.w3.org/2000/xmlns/". NOT_SUPPORTED_ERR: Always thrown if the 現在の 文書 does not support the "XML" feature, since namespaces were defined by XML.
最高の,を越す of Page

The ASF

Copyright & License | Privacy | 接触する Us | 寄付する | Thanks

Apache, OpenOffice, OpenOffice.org and the seagull logo are 登録(する)d trademarks of The Apache ソフトウェア 創立/基礎. The ASF logo is a trademark of The Apache ソフトウェア 創立/基礎. Other 指名するs appearing on the 場所/位置 may be trademarks of their 各々の owners.