|
||||||||||
PREV NEXT | FRAMES NO FRAMES |
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.traverse | |
org.apache.axiom.om.util | |
org.apache.axiom.soap | |
org.apache.axiom.soap.impl.builder | |
org.apache.axiom.ts.soap.envelope |
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 |
OMEntityReference
Represents an unexpanded entity reference in an XML document. |
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 of this container. |
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. |
Uses of OMNode in org.apache.axiom.om.impl |
---|
Subinterfaces of OMNode in org.apache.axiom.om.impl | |
---|---|
interface |
OMElementEx
Interface that is used internally by Axiom and that should not be considered being part of the public API. |
interface |
OMNodeEx
Interface that is used internally by Axiom and that should not be considered being part of the public API. |
Methods in org.apache.axiom.om.impl that return OMNode | |
---|---|
OMNode |
OMNodeEx.getNextOMSiblingIfAvailable()
Get the next sibling if it is available. |
Methods in org.apache.axiom.om.impl with parameters of type OMNode | |
---|---|
void |
OMContainerEx.addChild(OMNode omNode,
boolean fromBuilder)
|
void |
OMNodeEx.setNextOMSibling(OMNode node)
|
void |
OMNodeEx.setPreviousOMSibling(OMNode previousSibling)
|
Uses of OMNode in org.apache.axiom.om.impl.builder |
---|
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.createEntityReference()
|
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)
This method will check whether the text can be optimizable using IS_BINARY flag. |
protected OMNode |
StAXOMBuilder.createPI()
Method createPI. |
protected OMNode |
StAXOMBuilder.createWithCustomBuilder(CustomBuilder customBuilder,
OMFactory factory)
|
OMNode |
OMFactoryEx.importNode(OMNode child)
|
Methods in org.apache.axiom.om.impl.builder with parameters of type OMNode | |
---|---|
OMNode |
OMFactoryEx.importNode(OMNode child)
|
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
Deprecated. Field currentChild |
protected OMNode |
OMChildElementIterator.lastChild
Deprecated. Field lastChild |
Methods in org.apache.axiom.om.impl.traverse that return OMNode | |
---|---|
protected OMNode |
OMDescendantsIterator.getNextNode(OMNode currentNode)
Deprecated. |
protected OMNode |
OMChildrenIterator.getNextNode(OMNode currentNode)
|
protected abstract OMNode |
OMAbstractIterator.getNextNode(OMNode currentNode)
Get the next node. |
Methods in org.apache.axiom.om.impl.traverse with parameters of type OMNode | |
---|---|
protected OMNode |
OMDescendantsIterator.getNextNode(OMNode currentNode)
Deprecated. |
protected OMNode |
OMChildrenIterator.getNextNode(OMNode currentNode)
|
protected abstract OMNode |
OMAbstractIterator.getNextNode(OMNode currentNode)
Get the next node. |
protected boolean |
OMQualifiedNameFilterIterator.matches(OMNode node)
|
protected boolean |
OMQNameFilterIterator.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 |
OMChildrenQNameIterator.matches(OMNode node)
Deprecated. |
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)
Deprecated. |
|
OMChildrenNamespaceIterator(OMNode currentChild,
String uri)
Deprecated. |
|
OMChildrenQNameIterator(OMNode currentChild,
QName givenQName)
Deprecated. Constructor OMChildrenQNameIterator. |
|
OMChildrenWithSpecificAttributeIterator(OMNode currentChild,
QName attributeName,
String attributeValue,
boolean detach)
Constructor OMChildrenWithSpecificAttributeIterator. |
|
OMDescendantsIterator(OMNode firstNode)
Deprecated. |
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.createEntityReference()
|
protected OMNode |
StAXSOAPModelBuilder.createNextOMElement()
|
protected OMNode |
StAXSOAPModelBuilder.createPI()
Method createPI. |
Uses of OMNode in org.apache.axiom.ts.soap.envelope |
---|
Methods in org.apache.axiom.ts.soap.envelope with parameters of type OMNode | |
---|---|
protected void |
CloneTestCase.identityCheck(OMNode source,
OMNode target,
String depth)
Check the identity of each object in the tree |
|
||||||||||
PREV NEXT | FRAMES NO FRAMES |