Java javax.xml.soap SOAPBodyElement fields, constructors, methods, implement or subclass

Example usage for Java javax.xml.soap SOAPBodyElement fields, constructors, methods, implement or subclass

Introduction

In this page you can find the methods, fields and constructors for javax.xml.soap SOAPBodyElement.

The text is from its open source code.

Implementation

javax.xml.soap.SOAPBodyElement has the following implementations.
Click this link to see all its implementation.

Method

SOAPElementaddChildElement(Name name)
Creates a new SOAPElement object initialized with the given Name object and adds the new element to this SOAPElement object.
SOAPElementaddNamespaceDeclaration(String prefix, String uri)
Adds a namespace declaration with the specified prefix and URI to this SOAPElement object.
SOAPElementaddTextNode(String text)
Creates a new Text object initialized with the given String and adds it to this SOAPElement object.
IteratorgetChildElements()
Returns an Iterator over all the immediate child Node s of this element.
StringgetLocalName()
Returns the local part of the qualified name of this node.
IteratorgetNamespacePrefixes()
Returns an Iterator over the namespace prefix String s declared by this element.
StringgetNamespaceURI()
The namespace URI of this node, or null if it is unspecified (see ).
StringgetValue()
Returns the value of this node if this is a Text node or the value of the immediate child of this node otherwise.
voidsetPrefix(String prefix)
The namespace prefix of this node, or null if it is unspecified.