|
||||||||||
PREV NEXT | FRAMES NO FRAMES |
Packages that use Attr | |
com.sun.xml.tree | This package supports in-memory XML documents in the form of a parse tree compliant with the W3C DOM Level 1 Core Recommendation, with extensions including support for XML Namespaces as defined by the current XML proposed recommendation. |
org.w3c.dom | The Document Object Model (DOM) is a Recommendation of the World Wide Web Consortium, defining programming interfaces for XML (and, optionally, HTML) documents. |
Uses of Attr in com.sun.xml.tree |
Methods in com.sun.xml.tree that return Attr | |
Attr |
ElementNode.getAttributeNode(java.lang.String uri,
java.lang.String name)
|
Attr |
ElementNode.getAttributeNode(java.lang.String name)
DOM: returns the attribute |
Attr |
ElementNode.setAttributeNode(Attr newAttr)
DOM: assigns the attribute |
Attr |
ElementNode.removeAttributeNode(Attr oldAttr)
DOM: removes the attribute with the same name as this one |
Attr |
ElementEx.getAttributeNode(java.lang.String uri,
java.lang.String name)
Returns the value of an element attribute, as named according to the XML Namespaces draft specification. |
Attr |
XmlDocument.createAttribute(java.lang.String name)
DOM: Returns a valueless attribute node with no default value. |
Methods in com.sun.xml.tree with parameters of type Attr | |
Attr |
ElementNode.setAttributeNode(Attr newAttr)
DOM: assigns the attribute |
Attr |
ElementNode.removeAttributeNode(Attr oldAttr)
DOM: removes the attribute with the same name as this one |
Uses of Attr in org.w3c.dom |
Methods in org.w3c.dom that return Attr | |
Attr |
Element.getAttributeNode(java.lang.String name)
Retrieves an Attr node by name. |
Attr |
Element.setAttributeNode(Attr newAttr)
Adds a new attribute. |
Attr |
Element.removeAttributeNode(Attr oldAttr)
Removes the specified attribute. |
Attr |
Document.createAttribute(java.lang.String name)
Creates an Attr of the given name. |
Methods in org.w3c.dom with parameters of type Attr | |
Attr |
Element.setAttributeNode(Attr newAttr)
Adds a new attribute. |
Attr |
Element.removeAttributeNode(Attr oldAttr)
Removes the specified attribute. |
|
||||||||||
PREV NEXT | FRAMES NO FRAMES |