当前页面:
在线文档首页 >
Java Platform, Enterprise Edition v1.4 API Specifications
SOAPBodyElement (Java 2 Platform Ent. Ed. v1.4) - Java Platform, Enterprise Edition v1.4 API Specifications
javax.xml.soap
Interface SOAPBodyElement
- All Superinterfaces:
- Element, Node, Node, SOAPElement
- All Known Subinterfaces:
- SOAPFault
- public interface SOAPBodyElement
- extends SOAPElement
A SOAPBodyElement
object represents the contents in
a SOAPBody
object. The SOAPFault
interface
is a SOAPBodyElement
object that has been defined.
A new SOAPBodyElement
object can be created and added
to a SOAPBody
object with the SOAPBody
method addBodyElement
. In the following line of code,
sb
is a SOAPBody
object, and
myName
is a Name
object.
SOAPBodyElement sbe = sb.addBodyElement(myName);
Fields inherited from interface org.w3c.dom.Node |
ATTRIBUTE_NODE, CDATA_SECTION_NODE, COMMENT_NODE, DOCUMENT_FRAGMENT_NODE, DOCUMENT_NODE, DOCUMENT_TYPE_NODE, ELEMENT_NODE, ENTITY_NODE, ENTITY_REFERENCE_NODE, NOTATION_NODE, PROCESSING_INSTRUCTION_NODE, TEXT_NODE |
Methods inherited from interface javax.xml.soap.SOAPElement |
addAttribute, addChildElement, addChildElement, addChildElement, addChildElement, addChildElement, addNamespaceDeclaration, addTextNode, getAllAttributes, getAttributeValue, getChildElements, getChildElements, getElementName, getEncodingStyle, getNamespacePrefixes, getNamespaceURI, getVisibleNamespacePrefixes, removeAttribute, removeContents, removeNamespaceDeclaration, setEncodingStyle |
Methods inherited from interface org.w3c.dom.Node |
appendChild, cloneNode, getAttributes, getChildNodes, getFirstChild, getLastChild, getLocalName, getNamespaceURI, getNextSibling, getNodeName, getNodeType, getNodeValue, getOwnerDocument, getParentNode, getPrefix, getPreviousSibling, hasAttributes, hasChildNodes, insertBefore, isSupported, normalize, removeChild, replaceChild, setNodeValue, setPrefix |
Methods inherited from interface org.w3c.dom.Element |
getAttribute, getAttributeNode, getAttributeNodeNS, getAttributeNS, getElementsByTagName, getElementsByTagNameNS, getTagName, hasAttribute, hasAttributeNS, removeAttribute, removeAttributeNode, removeAttributeNS, setAttribute, setAttributeNode, setAttributeNodeNS, setAttributeNS |
Submit a bug or feature Copyright 2003 Sun Microsystems, Inc. All rights reserved.