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

Packages that use OMNode
org.apache.axiom.c14n.omwrapper   
org.apache.axiom.om Contains core interfaces of the Axiom API. 
org.apache.axiom.om.impl   
org.apache.axiom.om.impl.builder   
org.apache.axiom.om.impl.dom   
org.apache.axiom.om.impl.llom   
org.apache.axiom.om.impl.traverse   
org.apache.axiom.om.util   
org.apache.axiom.soap   
org.apache.axiom.soap.impl.builder   
org.apache.axiom.soap.impl.dom   
org.apache.axiom.soap.impl.llom   
org.apache.axiom.soap.impl.llom.soap11   
org.apache.axiom.soap.impl.llom.soap12   
 

Uses of OMNode in org.apache.axiom.c14n.omwrapper
 

Fields in org.apache.axiom.c14n.omwrapper declared as OMNode
protected  OMNode NodeImpl.node
           
 

Uses of OMNode in org.apache.axiom.om
 

Subinterfaces of OMNode in org.apache.axiom.om
 interface OMComment
          Interface OMComment
 interface OMDocType
          Interface OMDocType
 interface OMElement
          A particular kind of node that represents an element infoset information item.
 interface OMProcessingInstruction
          Interface OMProcessingInstruction
 interface OMSourcedElement
          Element whose data is backed by an arbitrary Java object.
 interface OMText
          Represents character data in an XML document.
 

Methods in org.apache.axiom.om that return OMNode
 OMNode OMNode.detach()
          Removes a node (and all of its children) from its containing parent.
 OMNode OMContainer.getFirstOMChild()
          Gets the first child.
 OMNode OMNode.getNextOMSibling()
          Returns the next sibling in document order.
 OMNode OMNode.getPreviousOMSibling()
          Gets the previous sibling.
 

Methods in org.apache.axiom.om with parameters of type OMNode
 void OMContainer.addChild(OMNode omNode)
          Adds the given node as the last child.
 void OMNode.insertSiblingAfter(OMNode sibling)
          Inserts a new sibling after the current node.
 void OMNode.insertSiblingBefore(OMNode sibling)
          Inserts a sibling just before the current node.
 void OMElement.setFirstChild(OMNode node)
          Deprecated. This method should not be called, un-intentionally. When some one randomly set the first child, all the links handling will not happen inside this method. So we have moved this method to the less visible interface, OMContainerEx.
 

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

Subinterfaces of OMNode in org.apache.axiom.om.impl
 interface OMNodeEx
          Interface OMNodeEx

Internal Implementation detail.

 

Methods in org.apache.axiom.om.impl that return OMNode
 OMNode OMContainerEx.getFirstOMChildIfAvailable()
          Get the first child if it is available.
 OMNode OMNodeEx.getNextOMSiblingIfAvailable()
          Get the next sibling if it is available.
 OMNode OMNavigator.next()
          Get the next node.
 

Methods in org.apache.axiom.om.impl with parameters of type OMNode
 void OMContainerEx.setFirstChild(OMNode omNode)
          forcefully set the first element in this parent element
 void OMContainerEx.setLastChild(OMNode omNode)
          forcefully set the last element in this parent element
 void OMNodeEx.setNextOMSibling(OMNode node)
           
 void OMNodeEx.setPreviousOMSibling(OMNode previousSibling)
           
 

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

Fields in org.apache.axiom.om.impl.builder declared as OMNode
protected  OMNode StAXBuilder.lastNode
          Field lastNode
 

Methods in org.apache.axiom.om.impl.builder that return OMNode
protected  OMNode StAXOMBuilder.createComment()
          Method createOMText.
protected  OMNode StAXOMBuilder.createDTD()
          Method createDTD.
protected  OMNode StAXOMBuilder.createNextOMElement()
          Creates a new OMElement using either a CustomBuilder or the default Builder mechanism.
protected  OMNode StAXOMBuilder.createOMElement()
          Method createOMElement.
protected abstract  OMNode StAXBuilder.createOMElement()
          This method is called with the XMLStreamConstants.START_ELEMENT event.
protected  OMNode StAXBuilder.createOMText(int textType)
          Method createOMText.
protected  OMNode StAXOMBuilder.createPI()
          Method createPI.
protected  OMNode StAXOMBuilder.createWithCustomBuilder(CustomBuilder customBuilder, OMFactory factory)
           
 OMNode StAXBuilder.getLastNode()
           
 

Methods in org.apache.axiom.om.impl.builder with parameters of type OMNode
 void StAXBuilder.reset(OMNode node)
          Method reset.
 

Uses of OMNode in org.apache.axiom.om.impl.dom
 

Classes in org.apache.axiom.om.impl.dom that implement OMNode
 class AttrImpl
          Implementation of org.w3c.dom.Attr and org.apache.axiom.om.OMAttribute
 class CDATASectionImpl
           
 class CharacterImpl
          This implements the OMText operations which are to be inherited by TextImpl, CommentImpl, CDATASectionImpl.
 class ChildNode
           
 class CommentImpl
           
 class DocumentFragmentImpl
           
 class DocumentImpl
           
 class DocumentTypeImpl
           
 class ElementImpl
          Implementation of the org.w3c.dom.Element and org.apache.axiom.om.Element interfaces.
 class NodeImpl
           
 class ParentNode
           
 class ProcessingInstructionImpl
           
 class TextImpl
           
 class TextNodeImpl
           
 

Methods in org.apache.axiom.om.impl.dom that return OMNode
 OMNode ChildNode.detach()
           
 OMNode NodeImpl.detach()
           
 OMNode AttrImpl.detach()
          Not supported: Cannot detach attributes.
 OMNode ParentNode.getFirstOMChild()
           
 OMNode ParentNode.getFirstOMChildIfAvailable()
           
 OMNode ElementImpl.getNextOMSibling()
           
 OMNode ChildNode.getNextOMSibling()
           
 OMNode NodeImpl.getNextOMSibling()
          Default behavior returns null, overriden in ChildNode.
 OMNode DocumentImpl.getNextOMSibling()
           
 OMNode ChildNode.getNextOMSiblingIfAvailable()
           
 OMNode NodeImpl.getNextOMSiblingIfAvailable()
           
 OMNode ChildNode.getPreviousOMSibling()
           
 OMNode NodeImpl.getPreviousOMSibling()
          Default behavior returns null, overriden in ChildNode.
 OMNode DocumentImpl.getPreviousOMSibling()
           
protected  OMNode ParentNode.importNode(OMNode child)
          This method is intended only to be used by Axiom intenals when merging Objects from different Axiom implementations to the DOOM implementation.
 

Methods in org.apache.axiom.om.impl.dom with parameters of type OMNode
 void ParentNode.addChild(OMNode omNode)
           
protected  OMNode ParentNode.importNode(OMNode child)
          This method is intended only to be used by Axiom intenals when merging Objects from different Axiom implementations to the DOOM implementation.
 void ChildNode.insertSiblingAfter(OMNode sibling)
          Inserts the given sibling next to this item.
 void NodeImpl.insertSiblingAfter(OMNode sibling)
           
 void ChildNode.insertSiblingBefore(OMNode sibling)
          Inserts the given sibling before this item.
 void NodeImpl.insertSiblingBefore(OMNode sibling)
           
 void ParentNode.setFirstChild(OMNode omNode)
           
 void ParentNode.setLastChild(OMNode omNode)
          Forcefully set the last child
 void ChildNode.setNextOMSibling(OMNode node)
           
 void NodeImpl.setNextOMSibling(OMNode previousSibling)
           
 void DocumentImpl.setNextOMSibling(OMNode node)
           
 void ChildNode.setPreviousOMSibling(OMNode node)
           
 void NodeImpl.setPreviousOMSibling(OMNode previousSibling)
           
 void DocumentImpl.setPreviousOMSibling(OMNode node)
           
 

Constructors in org.apache.axiom.om.impl.dom with parameters of type OMNode
DOMNavigator(OMNode node)
          Constructor OMNavigator.
 

Uses of OMNode in org.apache.axiom.om.impl.llom
 

Classes in org.apache.axiom.om.impl.llom that implement OMNode
 class OMCommentImpl
           
 class OMDocTypeImpl
           
 class OMElementImpl
          Class OMElementImpl
 class OMNodeImpl
          Class OMNodeImpl
 class OMProcessingInstructionImpl
           
 class OMSourcedElementImpl
          Element backed by an arbitrary data source.
 class OMTextImpl
           
 

Fields in org.apache.axiom.om.impl.llom declared as OMNode
protected  OMNode OMElementImpl.firstChild
          Field firstChild
protected  OMNode OMDocumentImpl.firstChild
          Field firstChild
protected  OMNode OMElementImpl.lastChild
           
protected  OMNode OMDocumentImpl.lastChild
          Field lastChild
 

Methods in org.apache.axiom.om.impl.llom that return OMNode
 OMNode OMElementImpl.detach()
          Removes this information item and its children, from the model completely.
 OMNode OMNodeImpl.detach()
          Removes this information item and its children, from the model completely.
 OMNode OMSourcedElementImpl.detach()
           
 OMNode OMElementImpl.getFirstOMChild()
          Method getFirstOMChild.
 OMNode OMSourcedElementImpl.getFirstOMChild()
           
 OMNode OMDocumentImpl.getFirstOMChild()
          Method getFirstOMChild.
 OMNode OMElementImpl.getFirstOMChildIfAvailable()
           
 OMNode OMSourcedElementImpl.getFirstOMChildIfAvailable()
           
 OMNode OMDocumentImpl.getFirstOMChildIfAvailable()
           
 OMNode OMElementImpl.getNextOMSibling()
          Gets the next sibling.
 OMNode OMNodeImpl.getNextOMSibling()
          Returns the next sibling.
 OMNode OMSourcedElementImpl.getNextOMSibling()
           
 OMNode OMNodeImpl.getNextOMSiblingIfAvailable()
           
 OMNode OMSourcedElementImpl.getNextOMSiblingIfAvailable()
           
 OMNode OMNodeImpl.getPreviousOMSibling()
          Gets the previous sibling.
protected  OMNode OMNodeImpl.importNode(OMNode child)
          This method is intended only to be used by Axiom intenals when merging Objects from different Axiom implementations to the LLOM implementation.
 

Methods in org.apache.axiom.om.impl.llom with parameters of type OMNode
 void OMElementImpl.addChild(OMNode child)
          Adds child to the element.
 void OMSourcedElementImpl.addChild(OMNode omNode)
           
 void OMDocumentImpl.addChild(OMNode child)
          Adds child to the element.
protected  OMNode OMNodeImpl.importNode(OMNode child)
          This method is intended only to be used by Axiom intenals when merging Objects from different Axiom implementations to the LLOM implementation.
 void OMNodeImpl.insertSiblingAfter(OMNode sibling)
          Inserts a sibling just after the current information item.
 void OMNodeImpl.insertSiblingBefore(OMNode sibling)
          Inserts a sibling just before the current information item.
 void OMElementImpl.setFirstChild(OMNode firstChild)
          Method setFirstChild.
 void OMSourcedElementImpl.setFirstChild(OMNode node)
           
 void OMDocumentImpl.setFirstChild(OMNode firstChild)
          Method setFirstChild.
 void OMElementImpl.setLastChild(OMNode omNode)
           
 void OMSourcedElementImpl.setLastChild(OMNode omNode)
           
 void OMDocumentImpl.setLastChild(OMNode omNode)
          Forcefully set the last child
 void OMNodeImpl.setNextOMSibling(OMNode node)
          Method setNextOMSibling.
 void OMNodeImpl.setPreviousOMSibling(OMNode previousSibling)
          Method setPreviousOMSibling.
 

Constructors in org.apache.axiom.om.impl.llom with parameters of type OMNode
OMNavigator(OMNode node)
          Constructor OMNavigator.
 

Uses of OMNode in org.apache.axiom.om.impl.traverse
 

Fields in org.apache.axiom.om.impl.traverse declared as OMNode
protected  OMNode OMChildElementIterator.currentChild
          Field currentChild
protected  OMNode OMChildElementIterator.lastChild
          Field lastChild
 

Methods in org.apache.axiom.om.impl.traverse that return OMNode
protected  OMNode OMChildrenIterator.getNextNode(OMNode currentNode)
           
protected abstract  OMNode OMAbstractIterator.getNextNode(OMNode currentNode)
          Get the next node.
protected  OMNode OMDescendantsIterator.getNextNode(OMNode currentNode)
           
 

Methods in org.apache.axiom.om.impl.traverse with parameters of type OMNode
protected  OMNode OMChildrenIterator.getNextNode(OMNode currentNode)
           
protected abstract  OMNode OMAbstractIterator.getNextNode(OMNode currentNode)
          Get the next node.
protected  OMNode OMDescendantsIterator.getNextNode(OMNode currentNode)
           
protected  boolean OMChildrenQNameIterator.matches(OMNode node)
           
protected abstract  boolean OMFilterIterator.matches(OMNode node)
          Determine whether the given node matches the filter criteria.
protected  boolean OMChildrenWithSpecificAttributeIterator.matches(OMNode node)
           
protected  boolean OMQNameFilterIterator.matches(OMNode node)
           
protected  boolean OMQualifiedNameFilterIterator.matches(OMNode node)
           
 

Constructors in org.apache.axiom.om.impl.traverse with parameters of type OMNode
OMAbstractIterator(OMNode firstNode)
           
OMChildrenIterator(OMNode currentChild)
          Constructor OMChildrenIterator.
OMChildrenLegacyQNameIterator(OMNode currentChild, QName qName)
          Deprecated.  
OMChildrenLocalNameIterator(OMNode currentChild, String localName)
           
OMChildrenNamespaceIterator(OMNode currentChild, String uri)
           
OMChildrenQNameIterator(OMNode currentChild, QName givenQName)
          Constructor OMChildrenQNameIterator.
OMChildrenWithSpecificAttributeIterator(OMNode currentChild, QName attributeName, String attributeValue, boolean detach)
          Constructor OMChildrenWithSpecificAttributeIterator.
OMDescendantsIterator(OMNode firstNode)
           
 

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

Methods in org.apache.axiom.om.util with parameters of type OMNode
 boolean DigestGenerator.compareOMNode(OMNode node, OMNode comparingNode, String digestAlgorithm)
          Compares two OMNodes for the XML equality
 byte[] DigestGenerator.getDigest(OMNode node, String digestAlgorithm)
          This method is an overloaded method for the digest generation for OMNode
 

Uses of OMNode in org.apache.axiom.soap
 

Subinterfaces of OMNode 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 SOAPFaultClassifier
          Common superinterface for SOAPFaultCode and SOAPFaultSubCode.
 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.
 

Uses of OMNode in org.apache.axiom.soap.impl.builder
 

Methods in org.apache.axiom.soap.impl.builder that return OMNode
protected  OMNode StAXSOAPModelBuilder.createDTD()
          Method createDTD.
protected  OMNode StAXSOAPModelBuilder.createNextOMElement()
           
protected  OMNode StAXSOAPModelBuilder.createOMElement()
          Method createOMElement.
protected  OMNode StAXSOAPModelBuilder.createPI()
          Method createPI.
 

Uses of OMNode in org.apache.axiom.soap.impl.dom
 

Classes in org.apache.axiom.soap.impl.dom that implement OMNode
 class SOAPMessageImpl
           
 

Methods in org.apache.axiom.soap.impl.dom that return OMNode
 OMNode SOAPEnvelopeImpl.detach()
          Method detach
 OMNode SOAPEnvelopeImpl.getNextOMSibling()
           
 

Methods in org.apache.axiom.soap.impl.dom with parameters of type OMNode
 void SOAPEnvelopeImpl.addChild(OMNode child)
           
 

Uses of OMNode in org.apache.axiom.soap.impl.llom
 

Classes in org.apache.axiom.soap.impl.llom that implement OMNode
 class SOAPBodyImpl
          Class SOAPBodyImpl
 class SOAPElement
           
 class SOAPEnvelopeImpl
          Class SOAPEnvelopeImpl
 class SOAPFaultCodeImpl
           
 class SOAPFaultDetailImpl
           
 class SOAPFaultImpl
          Class SOAPFaultImpl
 class SOAPFaultNodeImpl
           
 class SOAPFaultReasonImpl
           
 class SOAPFaultRoleImpl
           
 class SOAPFaultSubCodeImpl
           
 class SOAPFaultTextImpl
           
 class SOAPFaultValueImpl
           
 class SOAPHeaderBlockImpl
          Class SOAPHeaderBlockImpl
 class SOAPHeaderImpl
          A class representing the SOAP Header, primarily allowing access to the contained HeaderBlocks.
 class SOAPTextImpl
           
 

Methods in org.apache.axiom.soap.impl.llom that return OMNode
 OMNode SOAPBodyImpl.detach()
           
 OMNode SOAPEnvelopeImpl.detach()
          Method detach
 

Methods in org.apache.axiom.soap.impl.llom with parameters of type OMNode
 void SOAPBodyImpl.addChild(OMNode child)
           
 void SOAPHeaderImpl.addChild(OMNode child)
           
 void SOAPEnvelopeImpl.addChild(OMNode child)
          Add a SOAPHeader or SOAPBody object
 void SOAPMessageImpl.setFirstChild(OMNode firstChild)
           
 

Uses of OMNode in org.apache.axiom.soap.impl.llom.soap11
 

Classes in org.apache.axiom.soap.impl.llom.soap11 that implement OMNode
 class SOAP11BodyImpl
           
 class SOAP11FaultCodeImpl
           
 class SOAP11FaultDetailImpl
           
 class SOAP11FaultImpl
           
 class SOAP11FaultReasonImpl
           
 class SOAP11FaultRoleImpl
           
 class SOAP11FaultSubCodeImpl
           
 class SOAP11FaultTextImpl
           
 class SOAP11FaultValueImpl
           
 class SOAP11HeaderBlockImpl
           
 class SOAP11HeaderImpl
           
 

Uses of OMNode in org.apache.axiom.soap.impl.llom.soap12
 

Classes in org.apache.axiom.soap.impl.llom.soap12 that implement OMNode
 class SOAP12BodyImpl
           
 class SOAP12FaultCodeImpl
           
 class SOAP12FaultDetailImpl
           
 class SOAP12FaultImpl
           
 class SOAP12FaultNodeImpl
           
 class SOAP12FaultReasonImpl
           
 class SOAP12FaultRoleImpl
           
 class SOAP12FaultSubCodeImpl
           
 class SOAP12FaultTextImpl
           
 class SOAP12FaultValueImpl
           
 class SOAP12HeaderBlockImpl
           
 class SOAP12HeaderImpl
           
 



Copyright © 2004-2013 The Apache Software Foundation. All Rights Reserved.