SOAPElement |
SOAPElement.addAttribute(javax.xml.namespace.QName qname,
java.lang.String value) |
|
SOAPElement |
SOAPElement.addAttribute(Name name,
java.lang.String value) |
Adds an attribute with the specified name and value to this SOAPElement object.
|
SOAPElement |
SOAPElement.addChildElement(java.lang.String localName) |
Creates a new SOAPElement object initialized with the given String
object and adds the new element to this SOAPElement object.
|
SOAPElement |
SOAPElement.addChildElement(java.lang.String localName,
java.lang.String prefix) |
Creates a new SOAPElement object initialized with the specified local name and
prefix and adds the new element to this SOAPElement object.
|
SOAPElement |
SOAPElement.addChildElement(java.lang.String localName,
java.lang.String prefix,
java.lang.String uri) |
Creates a new SOAPElement object initialized with the specified local name,
prefix, and URI and adds the new element to this SOAPElement object.
|
SOAPElement |
SOAPElement.addChildElement(javax.xml.namespace.QName qname) |
|
SOAPElement |
SOAPElement.addChildElement(Name name) |
Creates a new SOAPElement object initialized with the given Name
object and adds the new element to this SOAPElement object.
|
SOAPElement |
SOAPElement.addChildElement(SOAPElement element) |
Add a SOAPElement as a child of this SOAPElement instance.
|
SOAPElement |
SOAPElement.addNamespaceDeclaration(java.lang.String prefix,
java.lang.String uri) |
Adds a namespace declaration with the specified prefix and URI to this
SOAPElement object.
|
SOAPElement |
SOAPElement.addTextNode(java.lang.String text) |
Creates a new Text object initialized with the given String and
adds it to this SOAPElement object.
|
SOAPElement |
SOAPElementFactory.create(java.lang.String localName) |
Deprecated.
|
SOAPElement |
SOAPElementFactory.create(java.lang.String localName,
java.lang.String prefix,
java.lang.String uri) |
Deprecated.
|
SOAPElement |
SOAPElementFactory.create(Name name) |
Deprecated.
|
abstract SOAPElement |
SOAPFactory.createElement(java.lang.String localName) |
Create a SOAPElement object initialized with the given local name.
|
abstract SOAPElement |
SOAPFactory.createElement(java.lang.String localName,
java.lang.String prefix,
java.lang.String uri) |
Create a new SOAPElement object with the given local name, prefix and uri.
|
SOAPElement |
SOAPFactory.createElement(javax.xml.namespace.QName qname) |
Creates a SOAPElement object initialized with the given QName object.
|
abstract SOAPElement |
SOAPFactory.createElement(Name name) |
Create a SOAPElement object initialized with the given Name
object.
|
SOAPElement |
SOAPFactory.createElement(org.w3c.dom.Element element) |
Creates a SOAPElement object from an existing DOM Element.
|
SOAPElement |
Node.getParentElement() |
Returns the parent element of this Node object.
|
SOAPElement |
SOAPElement.setElementQName(javax.xml.namespace.QName newName) |
|