Example usage for Java javax.xml.soap DetailEntry 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 | addTextNode(String text) Creates a new Text object initialized with the given String and adds it to this SOAPElement object. |
Iterator | getAllAttributes() Returns an Iterator over all of the attribute Name objects in this SOAPElement object. |
String | getAttributeValue(Name name) Returns the value of the attribute with the specified name. |
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 | 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. |