|
|
Java EE 5 SDK 深圳电信培训中心.徐海蛟老师. |
||||||||
| 上一个类 下一个类 | 框架 无框架 | ||||||||
| 摘要: 嵌套 | 字段 | 构造器 | 方法 | 详细信息: 字段 | 构造器 | 方法 | ||||||||
javax.xml.soap Class SOAPElementFactory
java.lang.Objectjavax.xml.soap.SOAPElementFactory
Deprecated. - Use
javax.xml.soap.SOAPFactory for creating SOAPElements.
public class SOAPElementFactory
- extends Object
SOAPElementFactory is a factory for XML fragments that
will eventually end up in the SOAP part. These fragments
can be inserted as children of the SOAPHeader or
SOAPBody or SOAPEnvelope.
Elements created using this factory do not have the properties of an element that lives inside a SOAP header document. These elements are copied into the XML document tree when they are inserted.
- 另请参见:
SOAPFactory
| 方法摘要 | |
|---|---|
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. |
| 类方法继承 java.lang.Object |
|---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
| 方法详细信息 |
|---|
create
public SOAPElement create(Name name) throws SOAPException
- Deprecated. Use
javax.xml.soap.SOAPFactory.createElement(javax.xml.soap.Name)
instead
- Create a
SOAPElementobject initialized with the givenNameobject. - 参数:
name- aNameobject with the XML name for the new element- 返回:
- the new
SOAPElementobject that was created - 抛出异常:
SOAPException- if there is an error in creating theSOAPElementobject- 另请参见:
SOAPFactory.createElement(javax.xml.soap.Name),SOAPFactory.createElement(javax.xml.namespace.QName)
create
public SOAPElement create(String localName) throws SOAPException
- Deprecated. Use
javax.xml.soap.SOAPFactory.createElement(String localName) instead
- Create a
SOAPElementobject initialized with the given local name. - 参数:
localName- aStringgiving the local name for the new element- 返回:
- the new
SOAPElementobject that was created - 抛出异常:
SOAPException- if there is an error in creating theSOAPElementobject- 另请参见:
SOAPFactory.createElement(java.lang.String)
create
public SOAPElement create(String localName, String prefix, String uri) throws SOAPException
- Deprecated. Use
javax.xml.soap.SOAPFactory.createElement(String localName,
String prefix,
String uri)
instead
- Create a new
SOAPElementobject with the given local name, prefix and uri. - 参数:
localName- aStringgiving the local name for the new elementprefix- the prefix for thisSOAPElementuri- aStringgiving the URI of the namespace to which the new element belongs- 抛出异常:
SOAPException- if there is an error in creating theSOAPElementobject- 另请参见:
SOAPFactory.createElement(java.lang.String, java.lang.String, java.lang.String)
newInstance
public static SOAPElementFactory newInstance() throws SOAPException
- Deprecated.
- Creates a new instance of
SOAPElementFactory. - 返回:
- a new instance of a
SOAPElementFactory - 抛出异常:
SOAPException- if there was an error creating the defaultSOAPElementFactory
|
|
Java EE 5 SDK 深圳电信培训中心.徐海蛟老师. |
||||||||
| 上一个类 下一个类 | 框架 无框架 | ||||||||
| 摘要: 嵌套 | 字段 | 构造器 | 方法 | 详细信息: 字段 | 构造器 | 方法 | ||||||||
提交错误或意见
版权所有 2007 Sun Microsystems, Inc. 保留所有权利。 请遵守许可证条款。深圳电信培训中心.徐海蛟老师教学参考.
javax.xml.soap.SOAPElementFactory