|
Préférences
Moteurs de recherche
|
||||||||||||
JavaTM 2 Platform Std. Ed. v1.6.0
javax.xml.soap
|
Method Summary | |
---|---|
SOAPElement |
create(Name name)
Deprecated. Use javax.xml.soap.SOAPFactory.createElement(javax.xml.soap.Name) instead |
SOAPElement |
create(String localName)
Deprecated. Use javax.xml.soap.SOAPFactory.createElement(String localName) instead |
SOAPElement |
create(String localName,
String prefix,
String uri)
Deprecated. Use javax.xml.soap.SOAPFactory.createElement(String localName, String prefix, String uri) instead |
static SOAPElementFactory |
newInstance()
Deprecated. Creates a new instance of SOAPElementFactory . |
Methods inherited from class java.lang.Object |
---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
Method Detail |
---|
public SOAPElement create(Name name) throws SOAPException
SOAPElement
object initialized with the
given Name
object.
name
- a Name
object with the XML name for
the new element
SOAPElement
object that was
created
SOAPException
- if there is an error in creating the
SOAPElement
objectSOAPFactory.createElement(javax.xml.soap.Name)
,
SOAPFactory.createElement(javax.xml.namespace.QName)
public SOAPElement create(String localName) throws SOAPException
SOAPElement
object initialized with the
given local name.
localName
- a String
giving the local name for
the new element
SOAPElement
object that was
created
SOAPException
- if there is an error in creating the
SOAPElement
objectSOAPFactory.createElement(java.lang.String)
public SOAPElement create(String localName, String prefix, String uri) throws SOAPException
SOAPElement
object with the given
local name, prefix and uri.
localName
- a String
giving the local name
for the new elementprefix
- the prefix for this SOAPElement
uri
- a String
giving the URI of the
namespace to which the new element belongs
SOAPException
- if there is an error in creating the
SOAPElement
objectSOAPFactory.createElement(java.lang.String, java.lang.String, java.lang.String)
public static SOAPElementFactory newInstance() throws SOAPException
SOAPElementFactory
.
SOAPElementFactory
SOAPException
- if there was an error creating the
default SOAPElementFactory