Example usage for Java javax.xml.soap SOAPBodyElement fields, constructors, methods, implement or subclass
The text is from its open source code.
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 | addNamespaceDeclaration(String prefix, String uri) Adds a namespace declaration with the specified prefix and URI to this SOAPElement object. |
SOAPElement | addTextNode(String text) Creates a new Text object initialized with the given String and adds it to this SOAPElement object. |
Iterator | getChildElements() Returns an Iterator over all the immediate child Node s of this element. |
String | getLocalName() Returns the local part of the qualified name of this node. |
Iterator | getNamespacePrefixes() Returns an Iterator over the namespace prefix String s declared by this element. |
String | getNamespaceURI() The namespace URI of this node, or null if it is unspecified (see ). |
String | getValue() Returns the value of this node if this is a Text node or the value of the immediate child of this node otherwise. |
void | setPrefix(String prefix) The namespace prefix of this node, or null if it is unspecified. |