|
|||||||||||
PREV NEXT | FRAMES NO FRAMES |
Uses of OMNode in org.apache.axis2.om |
Subinterfaces of OMNode in org.apache.axis2.om | |
interface |
OMComment
Interface OMComment |
interface |
OMDocType
Interface OMDocType |
interface |
OMElement
Interface OMElement |
interface |
OMProcessingInstruction
Interface OMProcessingInstruction |
interface |
OMText
Interface OMText |
Methods in org.apache.axis2.om that return OMNode | |
OMNode |
OMElement.getFirstChild()
Get the first child |
OMNode |
OMContainer.getFirstChild()
|
OMNode |
OMNode.getNextSibling()
This will give the next sibling. |
OMNode |
OMNode.detach()
This will remove this information item and its children, from the model completely. |
OMNode |
OMNode.getPreviousSibling()
get the previous sibling |
Methods in org.apache.axis2.om with parameters of type OMNode | |
void |
OMElement.addChild(OMNode omNode)
This will add child to the element. |
void |
OMElement.setFirstChild(OMNode node)
Set the first child |
void |
OMContainer.addChild(OMNode omNode)
|
void |
OMNode.insertSiblingAfter(OMNode sibling)
This will insert a sibling just after the current information item. |
void |
OMNode.insertSiblingBefore(OMNode sibling)
This will insert a sibling just before the current information item |
Uses of OMNode in org.apache.axis2.om.impl |
Subinterfaces of OMNode in org.apache.axis2.om.impl | |
interface |
OMNodeEx
Interface OMNodeEx Internal Implementation detail. |
Methods in org.apache.axis2.om.impl with parameters of type OMNode | |
void |
OMNodeEx.setNextSibling(OMNode node)
|
void |
OMNodeEx.setPreviousSibling(OMNode previousSibling)
|
void |
OMContainerEx.setFirstChild(OMNode omNode)
|
Uses of OMNode in org.apache.axis2.om.impl.llom |
Classes in org.apache.axis2.om.impl.llom that implement OMNode | |
class |
OMCommentImpl
|
class |
OMDocTypeImpl
|
class |
OMElementImpl
Class OMElementImpl |
class |
OMNodeImpl
Class OMNodeImpl |
class |
OMProcessingInstructionImpl
|
class |
OMTextImpl
|
Fields in org.apache.axis2.om.impl.llom declared as OMNode | |
protected OMNode |
OMNavigator.node
Field node |
protected OMNode |
OMDocumentImpl.firstChild
Field firstChild |
protected OMNode |
OMDocumentImpl.lastChild
Field lastChild |
protected OMNode |
OMElementImpl.firstChild
Field firstChild |
Methods in org.apache.axis2.om.impl.llom that return OMNode | |
OMNode |
OMNavigator.next()
get the next node |
OMNode |
OMDocumentImpl.getFirstChild()
Method getFirstChild |
OMNode |
OMElementImpl.getNextSibling()
This will give the next sibling. |
OMNode |
OMElementImpl.getFirstChild()
Method getFirstChild |
OMNode |
OMElementImpl.detach()
This will remove this information item and its children, from the model completely |
OMNode |
OMNodeImpl.getNextSibling()
This will give the next sibling. |
OMNode |
OMNodeImpl.detach()
This will remove this information item and its children, from the model completely |
OMNode |
OMNodeImpl.getPreviousSibling()
Method getPreviousSibling |
Methods in org.apache.axis2.om.impl.llom with parameters of type OMNode | |
void |
OMNavigator.init(OMNode node)
Method init |
void |
OMDocumentImpl.addChild(OMNode child)
This will add child to the element. |
void |
OMDocumentImpl.setFirstChild(OMNode firstChild)
Method setFirstChild |
void |
OMElementImpl.addChild(OMNode child)
This will add child to the element. |
void |
OMElementImpl.setFirstChild(OMNode firstChild)
Method setFirstChild |
void |
OMNodeImpl.setNextSibling(OMNode node)
Method setNextSibling |
void |
OMNodeImpl.insertSiblingAfter(OMNode sibling)
This will insert a sibling just after the current information item. |
void |
OMNodeImpl.insertSiblingBefore(OMNode sibling)
This will insert a sibling just before the current information item |
void |
OMNodeImpl.setPreviousSibling(OMNode previousSibling)
Method setPreviousSibling |
Constructors in org.apache.axis2.om.impl.llom with parameters of type OMNode | |
OMNavigator(OMNode node)
Constructor OMNavigator |
Uses of OMNode in org.apache.axis2.om.impl.llom.builder |
Fields in org.apache.axis2.om.impl.llom.builder declared as OMNode | |
protected OMNode |
StAXBuilder.lastNode
Field lastNode |
Methods in org.apache.axis2.om.impl.llom.builder that return OMNode | |
protected OMNode |
StAXBuilder.createOMText(int textType)
Method createOMText |
protected abstract OMNode |
StAXBuilder.createOMElement()
This method will be called with the XMLStreamConstants.START_ELEMENT event |
protected OMNode |
StAXOMBuilder.createOMElement()
Method createOMElement |
protected OMNode |
StAXOMBuilder.createComment()
Method createOMText |
protected OMNode |
StAXOMBuilder.createDTD()
Method createDTD |
protected OMNode |
StAXOMBuilder.createPI()
Method createPI |
Methods in org.apache.axis2.om.impl.llom.builder with parameters of type OMNode | |
void |
StAXBuilder.reset(OMNode node)
Method reset |
Uses of OMNode in org.apache.axis2.om.impl.llom.mtom |
Methods in org.apache.axis2.om.impl.llom.mtom that return OMNode | |
protected OMNode |
MTOMStAXSOAPModelBuilder.createOMElement()
|
Uses of OMNode in org.apache.axis2.om.impl.llom.traverse |
Fields in org.apache.axis2.om.impl.llom.traverse declared as OMNode | |
protected OMNode |
OMChildrenIterator.currentChild
Field currentChild |
protected OMNode |
OMChildrenIterator.lastChild
Field lastChild |
protected OMNode |
OMChildElementIterator.currentChild
Field currentChild |
protected OMNode |
OMChildElementIterator.lastChild
Field lastChild |
Constructors in org.apache.axis2.om.impl.llom.traverse with parameters of type OMNode | |
OMChildrenWithSpecificAttributeIterator(OMNode currentChild,
javax.xml.namespace.QName attributeName,
java.lang.String attributeValue,
boolean detach)
Constructor OMChildrenWithSpecificAttributeIterator |
|
OMChildrenQNameIterator(OMNode currentChild,
javax.xml.namespace.QName givenQName)
Constructor OMChildrenQNameIterator |
|
OMChildrenIterator(OMNode currentChild)
Constructor OMChildrenIterator |
Uses of OMNode in org.apache.axis2.rpc |
Classes in org.apache.axis2.rpc that implement OMNode | |
class |
RPCRequestElement
RPCResponseElement |
class |
RPCResponseElement
RPCResponseElement |
Uses of OMNode in org.apache.axis2.saaj |
Fields in org.apache.axis2.saaj declared as OMNode | |
protected OMNode |
NodeImpl.omNode
Field omNode |
Methods in org.apache.axis2.saaj that return OMNode | |
OMNode |
NodeImpl.getOMNode()
constructor which adopts the name and NS of the char data, and its text |
Constructors in org.apache.axis2.saaj with parameters of type OMNode | |
NodeImpl(OMNode node)
Constructor NodeImpl |
Uses of OMNode in org.apache.axis2.soap |
Subinterfaces of OMNode in org.apache.axis2.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. |
Uses of OMNode in org.apache.axis2.soap.impl.llom |
Classes in org.apache.axis2.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
Class SOAPHeaderImpl |
class |
SOAPTextImpl
|
Methods in org.apache.axis2.soap.impl.llom that return OMNode | |
OMNode |
SOAPEnvelopeImpl.detach()
Method detach |
OMNode |
SOAPBodyImpl.detach()
|
Methods in org.apache.axis2.soap.impl.llom with parameters of type OMNode | |
void |
SOAPEnvelopeImpl.addChild(OMNode child)
|
void |
SOAPMessageImpl.addChild(OMNode child)
|
void |
SOAPMessageImpl.setFirstChild(OMNode firstChild)
|
Uses of OMNode in org.apache.axis2.soap.impl.llom.builder |
Methods in org.apache.axis2.soap.impl.llom.builder that return OMNode | |
protected OMNode |
StAXSOAPModelBuilder.createOMElement()
Method createOMElement |
protected OMNode |
StAXSOAPModelBuilder.createDTD()
Method createDTD Overriding the default behaviour as a SOAPMessage should not have a DTD |
protected OMNode |
StAXSOAPModelBuilder.createPI()
Method createPI Overriding the default behaviour as a SOAP Message should not have a PI |
Uses of OMNode in org.apache.axis2.soap.impl.llom.soap11 |
Classes in org.apache.axis2.soap.impl.llom.soap11 that implement OMNode | |
class |
SOAP11BodyImpl
|
class |
SOAP11FaultCodeImpl
|
class |
SOAP11FaultDetailImpl
|
class |
SOAP11FaultImpl
|
class |
SOAP11FaultNodeImpl
|
class |
SOAP11FaultReasonImpl
|
class |
SOAP11FaultRoleImpl
|
class |
SOAP11FaultSubCodeImpl
|
class |
SOAP11FaultTextImpl
|
class |
SOAP11FaultValueImpl
|
class |
SOAP11HeaderBlockImpl
|
class |
SOAP11HeaderImpl
|
Uses of OMNode in org.apache.axis2.soap.impl.llom.soap12 |
Classes in org.apache.axis2.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
|
Uses of OMNode in org.apache.axis2.util |
Methods in org.apache.axis2.util that return OMNode | |
static OMNode |
Dom2OmUtils.toOM(org.w3c.dom.Node node)
|
|
|||||||||||
PREV NEXT | FRAMES NO FRAMES |