|
|||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Objectorg.apache.axis2.om.impl.dom.factory.OMDOMFactory
Field Summary | |
protected DocumentImpl |
document
|
Constructor Summary | |
OMDOMFactory()
|
|
OMDOMFactory(DocumentImpl doc)
|
Method Summary | |
org.apache.ws.commons.om.OMAttribute |
createOMAttribute(String localName,
org.apache.ws.commons.om.OMNamespace ns,
String value)
|
org.apache.ws.commons.om.OMComment |
createOMComment(org.apache.ws.commons.om.OMContainer parent,
String content)
|
org.apache.ws.commons.om.OMDocType |
createOMDocType(org.apache.ws.commons.om.OMContainer parent,
String content)
|
org.apache.ws.commons.om.OMDocument |
createOMDocument()
|
org.apache.ws.commons.om.OMDocument |
createOMDocument(org.apache.ws.commons.om.OMXMLParserWrapper builder)
|
org.apache.ws.commons.om.OMElement |
createOMElement(QName qname,
org.apache.ws.commons.om.OMContainer parent)
Creates a new OMDOM Element node and adds it to the given parent. |
org.apache.ws.commons.om.OMElement |
createOMElement(String localName,
org.apache.ws.commons.om.OMNamespace ns)
|
org.apache.ws.commons.om.OMElement |
createOMElement(String localName,
org.apache.ws.commons.om.OMNamespace ns,
org.apache.ws.commons.om.OMContainer parent)
|
org.apache.ws.commons.om.OMElement |
createOMElement(String localName,
org.apache.ws.commons.om.OMNamespace ns,
org.apache.ws.commons.om.OMContainer parent,
org.apache.ws.commons.om.OMXMLParserWrapper builder)
Creates an OMElement with the builder. |
org.apache.ws.commons.om.OMElement |
createOMElement(String localName,
String namespaceURI,
String namespacePrefix)
Creates an OMElement. |
org.apache.ws.commons.om.OMNamespace |
createOMNamespace(String uri,
String prefix)
Creates a new OMNamespace. |
org.apache.ws.commons.om.OMProcessingInstruction |
createOMProcessingInstruction(org.apache.ws.commons.om.OMContainer parent,
String piTarget,
String piData)
|
org.apache.ws.commons.om.OMText |
createText(Object dataHandler,
boolean optimize)
Creates a new OMDOM Text node with the given datahandler and the given MTOM optimization configuration and returns it. |
org.apache.ws.commons.om.OMText |
createText(org.apache.ws.commons.om.OMElement parent,
String text)
Creates a new OMDOM Text node with the given value and appends it to the given parent element. |
org.apache.ws.commons.om.OMText |
createText(org.apache.ws.commons.om.OMElement parent,
String text,
int type)
|
org.apache.ws.commons.om.OMText |
createText(org.apache.ws.commons.om.OMElement parent,
String s,
String mimeType,
boolean optimize)
Creates an OMDOM Text node, adds it to the give parent element and returns it. |
org.apache.ws.commons.om.OMText |
createText(String s)
Creates a OMDOM Text node carrying the given value. |
org.apache.ws.commons.om.OMText |
createText(String text,
int type)
Creates a Character node of the given type. |
org.apache.ws.commons.om.OMText |
createText(String contentID,
org.apache.ws.commons.om.OMElement parent,
org.apache.ws.commons.om.OMXMLParserWrapper builder)
|
org.apache.ws.commons.om.OMText |
createText(String text,
String mimeType,
boolean optimize)
Creates a new OMDOM Text node with the value of the given text value along with the MTOM optimization parameters and returns it. |
DocumentImpl |
getDocument()
|
void |
setDocument(DocumentImpl document)
Configure this factory to use the given document. |
Methods inherited from class java.lang.Object |
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
Field Detail |
protected DocumentImpl document
Constructor Detail |
public OMDOMFactory()
public OMDOMFactory(DocumentImpl doc)
Method Detail |
public org.apache.ws.commons.om.OMDocument createOMDocument()
createOMDocument
in interface org.apache.ws.commons.om.OMFactory
public void setDocument(DocumentImpl document)
document
- public org.apache.ws.commons.om.OMElement createOMElement(String localName, org.apache.ws.commons.om.OMNamespace ns)
createOMElement
in interface org.apache.ws.commons.om.OMFactory
public org.apache.ws.commons.om.OMElement createOMElement(String localName, org.apache.ws.commons.om.OMNamespace ns, org.apache.ws.commons.om.OMContainer parent) throws OMDOMException
createOMElement
in interface org.apache.ws.commons.om.OMFactory
OMDOMException
public org.apache.ws.commons.om.OMElement createOMElement(String localName, org.apache.ws.commons.om.OMNamespace ns, org.apache.ws.commons.om.OMContainer parent, org.apache.ws.commons.om.OMXMLParserWrapper builder)
createOMElement
in interface org.apache.ws.commons.om.OMFactory
public org.apache.ws.commons.om.OMElement createOMElement(String localName, String namespaceURI, String namespacePrefix)
createOMElement
in interface org.apache.ws.commons.om.OMFactory
OMFactory.createOMElement(java.lang.String,
java.lang.String, java.lang.String)
public org.apache.ws.commons.om.OMElement createOMElement(QName qname, org.apache.ws.commons.om.OMContainer parent) throws org.apache.ws.commons.om.OMException
createOMElement
in interface org.apache.ws.commons.om.OMFactory
org.apache.ws.commons.om.OMException
createOMElement(String, OMNamespace, OMContainer)
,
OMFactory.createOMElement(
javax.xml.namespace.QName, org.apache.ws.commons.om.OMContainer)
public org.apache.ws.commons.om.OMNamespace createOMNamespace(String uri, String prefix)
createOMNamespace
in interface org.apache.ws.commons.om.OMFactory
OMFactory.createOMNamespace(java.lang.String,
java.lang.String)
public org.apache.ws.commons.om.OMText createText(org.apache.ws.commons.om.OMElement parent, String text)
createText
in interface org.apache.ws.commons.om.OMFactory
OMFactory.createText(
org.apache.ws.commons.om.OMElement,java.lang.String)
public org.apache.ws.commons.om.OMText createText(org.apache.ws.commons.om.OMElement parent, String text, int type)
createText
in interface org.apache.ws.commons.om.OMFactory
public org.apache.ws.commons.om.OMText createText(String s)
createText
in interface org.apache.ws.commons.om.OMFactory
OMFactory.createText(java.lang.String)
public org.apache.ws.commons.om.OMText createText(String text, int type)
createText
in interface org.apache.ws.commons.om.OMFactory
OMFactory.createText(java.lang.String, int)
public org.apache.ws.commons.om.OMText createText(String text, String mimeType, boolean optimize)
createText
in interface org.apache.ws.commons.om.OMFactory
OMFactory.createText(java.lang.String,
java.lang.String, boolean)
public org.apache.ws.commons.om.OMText createText(Object dataHandler, boolean optimize)
createText
in interface org.apache.ws.commons.om.OMFactory
OMFactory.createText(java.lang.Object, boolean)
public org.apache.ws.commons.om.OMText createText(org.apache.ws.commons.om.OMElement parent, String s, String mimeType, boolean optimize)
createText
in interface org.apache.ws.commons.om.OMFactory
OMFactory.createText(org.apache.ws.commons.om.OMElement,
java.lang.String, java.lang.String, boolean)
public org.apache.ws.commons.om.OMText createText(String contentID, org.apache.ws.commons.om.OMElement parent, org.apache.ws.commons.om.OMXMLParserWrapper builder)
createText
in interface org.apache.ws.commons.om.OMFactory
public org.apache.ws.commons.om.OMAttribute createOMAttribute(String localName, org.apache.ws.commons.om.OMNamespace ns, String value)
createOMAttribute
in interface org.apache.ws.commons.om.OMFactory
public org.apache.ws.commons.om.OMDocType createOMDocType(org.apache.ws.commons.om.OMContainer parent, String content)
createOMDocType
in interface org.apache.ws.commons.om.OMFactory
public org.apache.ws.commons.om.OMProcessingInstruction createOMProcessingInstruction(org.apache.ws.commons.om.OMContainer parent, String piTarget, String piData)
createOMProcessingInstruction
in interface org.apache.ws.commons.om.OMFactory
public org.apache.ws.commons.om.OMComment createOMComment(org.apache.ws.commons.om.OMContainer parent, String content)
createOMComment
in interface org.apache.ws.commons.om.OMFactory
public DocumentImpl getDocument()
public org.apache.ws.commons.om.OMDocument createOMDocument(org.apache.ws.commons.om.OMXMLParserWrapper builder)
createOMDocument
in interface org.apache.ws.commons.om.OMFactory
|
|||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |