JavaTM 2 Platform
Standard Ed. 6

介面 org.w3c.dom.Attr
的使用

使用 Attr 的軟體套件
javax.imageio.metadata 用於處理讀寫元資料的 Java Image I/O API 的套件。 
org.w3c.dom 為文檔物件模型 (DOM) 提供介面,該模型是 Java API for XML Processing 的元件 API。 
 

javax.imageio.metadataAttr 的使用
 

返回 Attrjavax.imageio.metadata 中的方法
 Attr IIOMetadataNode.getAttributeNode(String name)
           
 Attr IIOMetadataNode.getAttributeNodeNS(String namespaceURI, String localName)
          等效於 getAttributeNode(localName)
 Attr IIOMetadataNode.removeAttributeNode(Attr oldAttr)
           
 Attr IIOMetadataNode.setAttributeNode(Attr newAttr)
           
 Attr IIOMetadataNode.setAttributeNodeNS(Attr newAttr)
          等效於 setAttributeNode(newAttr)
 

參數型別為 Attrjavax.imageio.metadata 中的方法
 Attr IIOMetadataNode.removeAttributeNode(Attr oldAttr)
           
 Attr IIOMetadataNode.setAttributeNode(Attr newAttr)
           
 Attr IIOMetadataNode.setAttributeNodeNS(Attr newAttr)
          等效於 setAttributeNode(newAttr)
 void IIOMetadataNode.setIdAttributeNode(Attr idAttr, boolean isId)
           
 

org.w3c.domAttr 的使用
 

返回 Attrorg.w3c.dom 中的方法
 Attr Document.createAttribute(String name)
          創建給定名稱的 Attr
 Attr Document.createAttributeNS(String namespaceURI, String qualifiedName)
          創建給定的限定名稱和名稱空間 URI 的屬性。
 Attr Element.getAttributeNode(String name)
          通過名稱獲得屬性節點。
 Attr Element.getAttributeNodeNS(String namespaceURI, String localName)
          通過本地名稱和名稱空間 URI 獲得 Attr 節點。
 Attr Element.removeAttributeNode(Attr oldAttr)
          移除指定的屬性節點。
 Attr Element.setAttributeNode(Attr newAttr)
          添加新的屬性節點。
 Attr Element.setAttributeNodeNS(Attr newAttr)
          添加新屬性。
 

參數型別為 Attrorg.w3c.dom 中的方法
 Attr Element.removeAttributeNode(Attr oldAttr)
          移除指定的屬性節點。
 Attr Element.setAttributeNode(Attr newAttr)
          添加新的屬性節點。
 Attr Element.setAttributeNodeNS(Attr newAttr)
          添加新屬性。
 void Element.setIdAttributeNode(Attr idAttr, boolean isId)
          如果參數 isIdtrue,則此方法將指定的屬性宣告為使用者確定的 ID 屬性。
 


JavaTM 2 Platform
Standard Ed. 6

提交錯誤或意見

版權所有 2008 Sun Microsystems, Inc. 保留所有權利。請遵守GNU General Public License, version 2 only