Uses of Interface
org.apache.axiom.om.OMContainer

Packages that use OMContainer
org.apache.axiom.om   
org.apache.axiom.om.ds.custombuilder   
org.apache.axiom.om.impl   
org.apache.axiom.om.impl.builder   
org.apache.axiom.om.util   
org.apache.axiom.om.xpath   
org.apache.axiom.soap   
 

Uses of OMContainer in org.apache.axiom.om
 

Subinterfaces of OMContainer in org.apache.axiom.om
 interface OMDocument
           
 interface OMElement
          A particular kind of node that represents an element infoset information item.
 interface OMSourcedElement
          An OMSourcedElement is an OMElement whose data is backed by an arbitrary java object.
 

Methods in org.apache.axiom.om that return OMContainer
 OMContainer OMNode.getParent()
          Returns the parent containing node.
 

Methods in org.apache.axiom.om with parameters of type OMContainer
 OMComment OMFactory.createOMComment(OMContainer parent, java.lang.String content)
          Creates a comment.
 OMDocType OMFactory.createOMDocType(OMContainer parent, java.lang.String content)
          Creates DocType/DTD.
 OMElement OMFactory.createOMElement(javax.xml.namespace.QName qname, OMContainer parent)
          Create an OMElement with the given QName under the given parent.
 OMElement OMFactory.createOMElement(java.lang.String localName, OMNamespace ns, OMContainer parent)
           
 OMElement OMFactory.createOMElement(java.lang.String localName, OMNamespace ns, OMContainer parent, OMXMLParserWrapper builder)
           
 OMProcessingInstruction OMFactory.createOMProcessingInstruction(OMContainer parent, java.lang.String piTarget, java.lang.String piData)
          Creates a PI.
 OMText OMFactory.createOMText(OMContainer parent, char[] charArary, int type)
           
 OMText OMFactory.createOMText(OMContainer parent, OMText source)
          Create OMText node that is a copy of the source text node
 OMText OMFactory.createOMText(OMContainer parent, javax.xml.namespace.QName text)
           
 OMText OMFactory.createOMText(OMContainer parent, javax.xml.namespace.QName text, int type)
           
 OMText OMFactory.createOMText(OMContainer parent, java.lang.String text)
           
 OMText OMFactory.createOMText(OMContainer parent, java.lang.String text, int type)
           
 OMText OMFactory.createOMText(OMContainer parent, java.lang.String s, java.lang.String mimeType, boolean optimize)
           
 OMText OMFactory.createOMText(java.lang.String contentID, OMContainer parent, OMXMLParserWrapper builder)
           
 

Uses of OMContainer in org.apache.axiom.om.ds.custombuilder
 

Methods in org.apache.axiom.om.ds.custombuilder with parameters of type OMContainer
 OMElement ByteArrayCustomBuilder.create(java.lang.String namespace, java.lang.String localPart, OMContainer parent, javax.xml.stream.XMLStreamReader reader, OMFactory factory)
           
 

Uses of OMContainer in org.apache.axiom.om.impl
 

Subinterfaces of OMContainer in org.apache.axiom.om.impl
 interface OMContainerEx
          Interface OMContainerEx

Internal Implementation detail.

 

Methods in org.apache.axiom.om.impl with parameters of type OMContainer
 void OMNodeEx.setParent(OMContainer element)
           
 

Uses of OMContainer in org.apache.axiom.om.impl.builder
 

Methods in org.apache.axiom.om.impl.builder with parameters of type OMContainer
 OMElement CustomBuilder.create(java.lang.String namespace, java.lang.String localPart, OMContainer parent, javax.xml.stream.XMLStreamReader reader, OMFactory factory)
          Create an OMElement for this whole subtree.
private  OMNode StAXBuilder.createOMText(OMContainer omContainer, int textType)
          This method will check whether the text can be optimizable using IS_BINARY flag.
 

Uses of OMContainer in org.apache.axiom.om.util
 

Methods in org.apache.axiom.om.util with parameters of type OMContainer
private static void CopyUtils.copy(SOAPFactory factory, OMContainer targetParent, OMNode sourceNode)
          Create a copy of the sourceNode and attach it to the targetParent
private static void CopyUtils.copyOMComment(SOAPFactory factory, OMContainer targetParent, OMComment sourceComment)
          Create a copy of the source OMComment
private static void CopyUtils.copyOMElement(SOAPFactory factory, OMContainer targetParent, OMElement sourceElement)
          Create a copy of an ordinary OMElement
private static void CopyUtils.copyOMSourcedElement(SOAPFactory factory, OMContainer targetParent, OMSourcedElement sourceOMSE)
          Create a copy of the OMSourcedElement
private static void CopyUtils.copyOMText(SOAPFactory factory, OMContainer targetParent, OMText sourceText)
          Create a copy of the OM Text
private static void CopyUtils.copySOAPFault(SOAPFactory factory, OMContainer targetParent, SOAPFault sourceSOAPFault)
          Create a copy of a SOAPFault
private static void CopyUtils.copySOAPHeaderBlock_NoDataSource(SOAPFactory factory, OMContainer targetParent, SOAPHeaderBlock sourceSHB)
          Create a copy of the SOAPHeaderBlock
private static void CopyUtils.copySOAPHeaderBlock(SOAPFactory factory, OMContainer targetParent, SOAPHeaderBlock sourceSHB)
          Create a copy of the SOAPHeaderBlock
 

Uses of OMContainer in org.apache.axiom.om.xpath
 

Fields in org.apache.axiom.om.xpath declared as OMContainer
(package private)  OMContainer DocumentNavigator.OMNamespaceEx.parent
           
(package private)  OMContainer DocumentNavigator.OMAttributeEx.parent
           
 

Methods in org.apache.axiom.om.xpath that return OMContainer
 OMContainer DocumentNavigator.OMNamespaceEx.getParent()
           
 OMContainer DocumentNavigator.OMAttributeEx.getParent()
           
 

Constructors in org.apache.axiom.om.xpath with parameters of type OMContainer
DocumentNavigator.OMAttributeEx(OMAttribute attribute, OMContainer parent, OMFactory factory)
           
DocumentNavigator.OMNamespaceEx(OMNamespace nsp, OMContainer parent)
           
 

Uses of OMContainer in org.apache.axiom.soap
 

Subinterfaces of OMContainer in org.apache.axiom.soap
 interface SOAPBody
          An object that represents the contents of the SOAP body element in a SOAP message.
 interface SOAPEnvelope
          Interface SOAPEnvelope
 interface SOAPFault
          An element in the SOAPBody object that contains error and/or status information.
 interface SOAPFaultCode
           
 interface SOAPFaultDetail
          The Detail element information item is intended for carrying application specific error information related to the SOAP Body .
 interface SOAPFaultNode
           
 interface SOAPFaultReason
           
 interface SOAPFaultRole
          The Role element information item identifies the role the node was operating in at the point the fault occurred.
 interface SOAPFaultSubCode
           
 interface SOAPFaultText
           
 interface SOAPFaultValue
           
 interface SOAPHeader
          Interface SOAPHeader
 interface SOAPHeaderBlock
          An object representing the contents in the SOAP header part of the SOAP envelope.
 interface SOAPMessage