SOAPElement |
SOAPElement.addAttribute(Name name,
java.lang.String value) |
Adds an attribute with the specified name and value to this SOAPElement object.
|
SOAPBodyElement |
SOAPBody.addBodyElement(Name name) |
Creates a new SOAPBodyElement object with the specified name and adds it to this
SOAPBody 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.
|
DetailEntry |
Detail.addDetailEntry(Name name) |
Creates a new DetailEntry object with the given name and adds it to this
Detail object.
|
SOAPFault |
SOAPBody.addFault(Name faultCode,
java.lang.String faultString) |
Creates a new SOAPFault object and adds it to this SOAPBody object.
|
SOAPFault |
SOAPBody.addFault(Name faultCode,
java.lang.String faultString,
java.util.Locale locale) |
Creates a new SOAPFault object and adds it to this SOAPBody object.
|
SOAPHeaderElement |
SOAPHeader.addHeaderElement(Name name) |
Creates a new SOAPHeaderElement object initialized with the specified name and
adds it to this SOAPHeader object.
|
SOAPElement |
SOAPElementFactory.create(Name name) |
Deprecated.
|
abstract SOAPElement |
SOAPFactory.createElement(Name name) |
Create a SOAPElement object initialized with the given Name
object.
|
java.lang.String |
SOAPElement.getAttributeValue(Name name) |
Returns the value of the attribute with the specified name.
|
java.util.Iterator |
SOAPElement.getChildElements(Name name) |
Returns an iterator over all the child elements with the specified name.
|
boolean |
SOAPElement.removeAttribute(Name name) |
Removes the attribute with the specified name.
|
void |
SOAPFault.setFaultCode(Name name) |
Sets this SOAPFault object with the given fault code.
|