org.apache.axis.soap
public class SOAPFactoryImpl extends SOAPFactory
| Method Summary | |
|---|---|
| Detail | createDetail() |
| SOAPElement | createElement(Name name)
Create a SOAPElement object initialized with
the given Name object. |
| SOAPElement | createElement(String localName)
Create a SOAPElement object initialized with
the given local name. |
| SOAPElement | createElement(String localName, String prefix, String uri)
Create a new SOAPElement object with the
given local name, prefix and uri. |
| Name | createName(String localName, String prefix, String uri) |
| Name | createName(String localName) |
SOAPElement object initialized with
the given Name object.Parameters: name a Name object with
the XML name for the new element
Returns: the new SOAPElement object that was
created
Throws: SOAPException if there is an error in
creating the SOAPElement object
SOAPElement object initialized with
the given local name.Parameters: localName a String giving
the local name for the new element
Returns: the new SOAPElement object that was
created
Throws: SOAPException if there is an error in
creating the SOAPElement object
SOAPElement object with the
given local name, prefix and uri.Parameters: localName a String giving
the local name for the new element prefix the prefix for this
SOAPElement uri a String giving the
URI of the namespace to which the new element
belongs
Returns: the new SOAPElement object that was
created
Throws: SOAPException if there is an error in
creating the SOAPElement object