Uses of Interface
javax.xml.soap.SOAPElement

Packages that use SOAPElement
javax.xml.soap   
org.apache.axis.message   
org.apache.axis.soap   
 

Uses of SOAPElement in javax.xml.soap
 

Subinterfaces of SOAPElement in javax.xml.soap
 interface Detail
          A container for DetailEntry objects.
 interface DetailEntry
          The content for a Detail object, giving details for a SOAPFault object.
 interface SOAPBody
          An object that represents the contents of the SOAP body element in a SOAP message.
 interface SOAPBodyElement
          A SOAPBodyElement object represents the contents in a SOAPBody object.
 interface SOAPEnvelope
          The container for the SOAPHeader and SOAPBody portions of a SOAPPart object.
 interface SOAPFault
          An element in the SOAPBody object that contains error and/or status information.
 interface SOAPFaultElement
          A representation of the contents in a SOAPFault object.
 interface SOAPHeader
          A representation of the SOAP header element.
 interface SOAPHeaderElement
          An object representing the contents in the SOAP header part of the SOAP envelope.
 

Methods in javax.xml.soap that return SOAPElement
abstract  SOAPElement SOAPFactory.createElement(Name name)
          Create a SOAPElement object initialized with the given Name object.
abstract  SOAPElement SOAPFactory.createElement(java.lang.String localName)
          Create a SOAPElement object initialized with the given local name.
abstract  SOAPElement SOAPFactory.createElement(java.lang.String localName, java.lang.String prefix, java.lang.String uri)
          Create a new SOAPElement object with the given local name, prefix and uri.
 SOAPElement SOAPElementFactory.create(Name name)
          Deprecated. Use javax.xml.soap.SOAPFactory.createElement(javax.xml.soap.Name) instead
 SOAPElement SOAPElementFactory.create(java.lang.String localName)
          Deprecated. Use javax.xml.soap.SOAPFactory.createElement(String localName) instead
 SOAPElement SOAPElementFactory.create(java.lang.String localName, java.lang.String prefix, java.lang.String uri)
          Deprecated. Use javax.xml.soap.SOAPFactory.createElement(String localName, String prefix, String uri) instead
 SOAPElement 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 SOAPElement.addChildElement(java.lang.String localName)
          Creates a new SOAPElement object initialized with the given String object and adds the new element to this SOAPElement object.
 SOAPElement SOAPElement.addChildElement(java.lang.String localName, java.lang.String prefix)
          Creates a new SOAPElement object initialized with the specified local name and prefix and adds the new element to this SOAPElement object.
 SOAPElement SOAPElement.addChildElement(java.lang.String localName, java.lang.String prefix, java.lang.String uri)
          Creates a new SOAPElement object initialized with the specified local name, prefix, and URI and adds the new element to this SOAPElement object.
 SOAPElement SOAPElement.addChildElement(SOAPElement element)
          Add a SOAPElement as a child of this SOAPElement instance.
 SOAPElement SOAPElement.addTextNode(java.lang.String text)
          Creates a new Text object initialized with the given String and adds it to this SOAPElement object.
 SOAPElement SOAPElement.addAttribute(Name name, java.lang.String value)
          Adds an attribute with the specified name and value to this SOAPElement object.
 SOAPElement SOAPElement.addNamespaceDeclaration(java.lang.String prefix, java.lang.String uri)
          Adds a namespace declaration with the specified prefix and URI to this SOAPElement object.
 SOAPElement Node.getParentElement()
          Returns the parent element of this Node object.
 

Methods in javax.xml.soap with parameters of type SOAPElement
 SOAPElement SOAPElement.addChildElement(SOAPElement element)
          Add a SOAPElement as a child of this SOAPElement instance.
 void Node.setParentElement(SOAPElement parent)
          Sets the parent of this Node object to the given SOAPElement object.
 

Uses of SOAPElement in org.apache.axis.message
 

Classes in org.apache.axis.message that implement SOAPElement
 class Detail
          Detail Container implementation
 class DetailEntry
          Detail Entry implementation
 class InputStreamBody
           
 class MessageElement
          MessageElement is the base type of nodes of the SOAP message parse tree.
 class RPCElement
           
 class RPCHeaderParam
           
 class RPCParam
          An RPC parameter
 class SOAPBody
          Holder for body elements.
 class SOAPBodyElement
          A Body element.
 class SOAPEnvelope
          Implementation of a SOAP Envelope
 class SOAPFault
          A Fault body element.
 class SOAPFaultElement
          SOAP Fault implementation
 class SOAPHeader
          Holder for header elements.
 class SOAPHeaderElement
          A simple header element abstraction.
 

Methods in org.apache.axis.message that return SOAPElement
 SOAPElement SOAPHeader.addChildElement(SOAPElement element)
           
 SOAPElement SOAPHeader.addChildElement(Name name)
           
 SOAPElement SOAPHeader.addChildElement(java.lang.String localName)
           
 SOAPElement SOAPHeader.addChildElement(java.lang.String localName, java.lang.String prefix)
           
 SOAPElement SOAPHeader.addChildElement(java.lang.String localName, java.lang.String prefix, java.lang.String uri)
           
 SOAPElement SOAPBody.addChildElement(SOAPElement element)
           
 SOAPElement SOAPBody.addChildElement(Name name)
           
 SOAPElement SOAPBody.addChildElement(java.lang.String localName)
           
 SOAPElement SOAPBody.addChildElement(java.lang.String localName, java.lang.String prefix)
           
 SOAPElement SOAPBody.addChildElement(java.lang.String localName, java.lang.String prefix, java.lang.String uri)
           
 SOAPElement RPCParam.addTextNode(java.lang.String s)
           
 SOAPElement NodeImpl.getParentElement()
          Returns the parent element of this Node object.
 SOAPElement MessageElement.addChildElement(Name childName)
          add the child element
 SOAPElement MessageElement.addChildElement(java.lang.String localName)
          add a child element in the message element's own namespace
 SOAPElement MessageElement.addChildElement(java.lang.String localName, java.lang.String prefixName)
          add a child element
 SOAPElement MessageElement.addChildElement(java.lang.String localName, java.lang.String childPrefix, java.lang.String uri)
          add a child element
 SOAPElement MessageElement.addChildElement(SOAPElement element)
          The added child must be an instance of MessageElement rather than an abitrary SOAPElement otherwise a (wrapped) ClassCastException will be thrown.
 SOAPElement MessageElement.addTextNode(java.lang.String s)
          add a text node to the document.
 SOAPElement MessageElement.addAttribute(Name attrName, java.lang.String value)
          add a new attribute
 SOAPElement MessageElement.addNamespaceDeclaration(java.lang.String prefix, java.lang.String uri)
          create a Mapping mapping and add to our namespace list.
 

Methods in org.apache.axis.message with parameters of type SOAPElement
 void SOAPHeaderElement.setParentElement(SOAPElement parent)
           
 void SOAPHeader.setParentElement(SOAPElement parent)
           
 SOAPElement SOAPHeader.addChildElement(SOAPElement element)
           
 void SOAPBodyElement.setParentElement(SOAPElement parent)
           
 void SOAPBody.setParentElement(SOAPElement parent)
           
 SOAPElement SOAPBody.addChildElement(SOAPElement element)
           
 void NodeImpl.setParentElement(SOAPElement parent)
          Sets the parent of this Node object to the given SOAPElement object.
 SOAPElement MessageElement.addChildElement(SOAPElement element)
          The added child must be an instance of MessageElement rather than an abitrary SOAPElement otherwise a (wrapped) ClassCastException will be thrown.
 

Uses of SOAPElement in org.apache.axis.soap
 

Methods in org.apache.axis.soap that return SOAPElement
 SOAPElement SOAPFactoryImpl.createElement(Name name)
          Create a SOAPElement object initialized with the given Name object.
 SOAPElement SOAPFactoryImpl.createElement(java.lang.String localName)
          Create a SOAPElement object initialized with the given local name.
 SOAPElement SOAPFactoryImpl.createElement(java.lang.String localName, java.lang.String prefix, java.lang.String uri)
          Create a new SOAPElement object with the given local name, prefix and uri.
 



Copyright © 2003 Apache Web Services Project. A ll Rights Reserved.