SOAPElement |
SOAPElement.addAttribute(QName qname,
String value) |
Adds an attribute with the specified name and value to this
SOAPElement object.
|
SOAPElement |
SOAPElement.addAttribute(Name name,
String value) |
Adds an attribute with the specified name and value to this
SOAPElement object.
|
SOAPElement |
SOAPElement.addChildElement(String localName) |
Creates a new SOAPElement object initialized with the
specified local name and adds the new element to this
SOAPElement object.
|
SOAPElement |
SOAPElement.addChildElement(String localName,
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(String localName,
String prefix,
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(QName qname) |
Creates a new SOAPElement object initialized with the given
QName object and adds the new element to this SOAPElement
object.
|
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(String prefix,
String uri) |
Adds a namespace declaration with the specified prefix and URI to this
SOAPElement object.
|
SOAPElement |
SOAPElement.addTextNode(String text) |
Creates a new Text object initialized with the given
String and adds it to this SOAPElement object.
|
SOAPElement |
SOAPElementFactory.create(String localName) |
Deprecated.
|
SOAPElement |
SOAPElementFactory.create(String localName,
String prefix,
String uri) |
Deprecated.
|
SOAPElement |
SOAPElementFactory.create(Name name) |
Deprecated.
|
abstract SOAPElement |
SOAPFactory.createElement(String localName) |
Creates a SOAPElement object initialized with the
given local name.
|
abstract SOAPElement |
SOAPFactory.createElement(String localName,
String prefix,
String uri) |
Creates a new SOAPElement object with the given
local name, prefix and uri.
|
SOAPElement |
SOAPFactory.createElement(QName qname) |
Creates a SOAPElement object initialized with the
given QName object.
|
abstract SOAPElement |
SOAPFactory.createElement(Name name) |
Creates a SOAPElement object initialized with the
given Name object.
|
SOAPElement |
SOAPFactory.createElement(Element domElement) |
Creates a SOAPElement object from an existing DOM
Element .
|
SOAPElement |
Node.getParentElement() |
Returns the parent element of this Node object.
|
SOAPElement |
SOAPElement.setElementQName(QName newName) |
Changes the name of this Element to newName if
possible.
|