Example usage for Java javax.xml.soap SOAPPart fields, constructors, methods, implement or subclass
The text is from its open source code.
Node | appendChild(Node newChild) Adds the node newChild to the end of the list of children of this node. |
CDATASection | createCDATASection(String data) Creates a CDATASection node whose value is the specified string. |
Element | createElement(String tagName) Creates an element of the type specified. |
Element | createElementNS(String namespaceURI, String qualifiedName) Creates an element of the given qualified name and namespace URI. |
Source | getContent() Returns the content of the SOAPEnvelope as a JAXP Source object. |
Element | getDocumentElement() This is a convenience attribute that allows direct access to the child node that is the document element of the document. |
NodeList | getElementsByTagNameNS(String namespaceURI, String localName) Returns a NodeList of all the Elements with a given local name and namespace URI in document order. |
SOAPEnvelope | getEnvelope() Gets the SOAPEnvelope object associated with this SOAPPart object. |
SOAPElement | getParentElement() Returns the parent element of this Node object. |
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. |
Node | importNode(Node importedNode, boolean deep) Imports a node from another document to this document, without altering or removing the source node from the original document; this method creates a new copy of the source node. |
void | setContent(Source source) Sets the content of the SOAPEnvelope object with the data from the given Source object. |
void | setParentElement(SOAPElement parent) Sets the parent of this Node object to the given SOAPElement object. |
void | setValue(String value) If this is a Text node then this method will set its value, otherwise it sets the value of the immediate (Text) child of this node. |