Class ElementFactory
- java.lang.Object
-
- com.sun.xml.messaging.saaj.soap.impl.ElementFactory
-
public class ElementFactory extends Object
-
-
Constructor Summary
Constructors Constructor Description ElementFactory()
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static javax.xml.soap.SOAPElementcreateElement(SOAPDocumentImpl ownerDocument, String localName, String prefix, String namespaceUri)static javax.xml.soap.SOAPElementcreateElement(SOAPDocumentImpl ownerDocument, QName name)static javax.xml.soap.SOAPElementcreateElement(SOAPDocumentImpl ownerDocument, javax.xml.soap.Name name)static javax.xml.soap.SOAPElementcreateElement(SOAPDocumentImpl ownerDocument, Element element)Create element wrapper for existing DOM element.static javax.xml.soap.SOAPElementcreateNamedElement(SOAPDocumentImpl ownerDocument, String localName, String prefix, String namespaceUri)protected static voidinvalidCreate(String msg)
-
-
-
Method Detail
-
createElement
public static javax.xml.soap.SOAPElement createElement(SOAPDocumentImpl ownerDocument, javax.xml.soap.Name name)
-
createElement
public static javax.xml.soap.SOAPElement createElement(SOAPDocumentImpl ownerDocument, QName name)
-
createElement
public static javax.xml.soap.SOAPElement createElement(SOAPDocumentImpl ownerDocument, Element element)
Create element wrapper for existing DOM element.- Parameters:
ownerDocument- SOAP document wrapper not nullelement- DOM element not null- Returns:
- SOAP wrapper for DOM element
-
createElement
public static javax.xml.soap.SOAPElement createElement(SOAPDocumentImpl ownerDocument, String localName, String prefix, String namespaceUri)
-
createNamedElement
public static javax.xml.soap.SOAPElement createNamedElement(SOAPDocumentImpl ownerDocument, String localName, String prefix, String namespaceUri)
-
invalidCreate
protected static void invalidCreate(String msg)
-
-