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

Packages that use OMNamespace
org.apache.axiom.om   
org.apache.axiom.om.impl   
org.apache.axiom.om.impl.util   
org.apache.axiom.om.xpath   
org.apache.axiom.soap   
org.apache.axiom.soap.impl.builder   
 

Uses of OMNamespace in org.apache.axiom.om
 

Methods in org.apache.axiom.om that return OMNamespace
 OMNamespace OMFactory.createOMNamespace(java.lang.String uri, java.lang.String prefix)
           
 OMNamespace OMElement.declareDefaultNamespace(java.lang.String uri)
          This will declare a default namespace for this element explicitly
 OMNamespace OMElement.declareNamespace(OMNamespace namespace)
          Declares a namespace with the element as its scope.
 OMNamespace OMElement.declareNamespace(java.lang.String uri, java.lang.String prefix)
          Creates a namespace in the current element scope.
 OMNamespace OMElement.findNamespace(java.lang.String uri, java.lang.String prefix)
          Finds a namespace with the given uri and prefix, in the scope of the hierarchy.
 OMNamespace OMElement.findNamespaceURI(java.lang.String prefix)
          Checks for a namespace in the context of this element with the given prefix and returns the relevant namespace object, if available.
 OMNamespace OMElement.getDefaultNamespace()
          This will retrieve the default namespace of this element, if available.
 OMNamespace OMText.getNamespace()
          Deprecated. This API is going away. Please use getTextAsQName() instead.
 OMNamespace OMElement.getNamespace()
           
 OMNamespace OMAttribute.getNamespace()
           
 

Methods in org.apache.axiom.om with parameters of type OMNamespace
 OMAttribute OMElement.addAttribute(java.lang.String attributeName, java.lang.String value, OMNamespace ns)
          Adds an attribute to the current element.
 OMAttribute OMFactory.createOMAttribute(java.lang.String localName, OMNamespace ns, java.lang.String value)
           
 OMSourcedElement OMFactory.createOMElement(OMDataSource source, java.lang.String localName, OMNamespace ns)
          Construct element with arbitrary data source.
 OMElement OMFactory.createOMElement(java.lang.String localName, OMNamespace ns)
           
 OMElement OMFactory.createOMElement(java.lang.String localName, OMNamespace ns, OMContainer parent)
           
 OMElement OMFactory.createOMElement(java.lang.String localName, OMNamespace ns, OMContainer parent, OMXMLParserWrapper builder)
           
 OMNamespace OMElement.declareNamespace(OMNamespace namespace)
          Declares a namespace with the element as its scope.
 void OMElement.setNamespace(OMNamespace namespace)
          Sets the Namespace.
 void OMElement.setNamespaceWithNoFindInCurrentScope(OMNamespace namespace)
          This will not search the namespace in the scope nor will declare in the current element, as in setNamespace(OMNamespace).
 void OMAttribute.setOMNamespace(OMNamespace omNamespace)
           
 

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

Classes in org.apache.axiom.om.impl that implement OMNamespace
 class OMNamespaceImpl
          Class OMNamespaceImpl
 

Uses of OMNamespace in org.apache.axiom.om.impl.util
 

Methods in org.apache.axiom.om.impl.util with parameters of type OMNamespace
static void OMSerializerUtil.serializeNamespace(OMNamespace namespace, javax.xml.stream.XMLStreamWriter writer)
          Deprecated. Use serializeStartpart instead
 

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

Classes in org.apache.axiom.om.xpath that implement OMNamespace
(package private)  class DocumentNavigator.OMNamespaceEx
           
 

Fields in org.apache.axiom.om.xpath declared as OMNamespace
(package private)  OMNamespace DocumentNavigator.OMNamespaceEx.originalNsp
           
 

Methods in org.apache.axiom.om.xpath that return OMNamespace
 OMNamespace DocumentNavigator.OMAttributeEx.getNamespace()
           
 

Methods in org.apache.axiom.om.xpath with parameters of type OMNamespace
 void DocumentNavigator.OMAttributeEx.setOMNamespace(OMNamespace omNamespace)
           
 

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

Uses of OMNamespace in org.apache.axiom.soap
 

Methods in org.apache.axiom.soap that return OMNamespace
 OMNamespace SOAPBody.getFirstElementNS()
          Retrieves the OMNamespace of the first element in the body.
 OMNamespace SOAPFactory.getNamespace()
           
 OMNamespace SOAPEnvelope.getSOAPBodyFirstElementNS()
          Retrieves the OMNamespace of the first element in the body.
 

Methods in org.apache.axiom.soap with parameters of type OMNamespace
 SOAPHeaderBlock SOAPHeader.addHeaderBlock(java.lang.String localName, OMNamespace ns)
          Creates a new SOAPHeaderBlock object initialized with the specified name and adds it to this SOAPHeader object.
 SOAPEnvelope SOAPFactory.createSOAPEnvelope(OMNamespace ns)
           
 SOAPHeaderBlock SOAPFactory.createSOAPHeaderBlock(java.lang.String localName, OMNamespace ns)
           
 SOAPHeaderBlock SOAPFactory.createSOAPHeaderBlock(java.lang.String localName, OMNamespace ns, OMDataSource ds)
          Create SOAPHeaderBlock that has an OMDataSource
 SOAPHeaderBlock SOAPFactory.createSOAPHeaderBlock(java.lang.String localName, OMNamespace ns, SOAPHeader parent)
           
 SOAPHeaderBlock SOAPFactory.createSOAPHeaderBlock(java.lang.String localName, OMNamespace ns, SOAPHeader parent, OMXMLParserWrapper builder)
           
 

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

Fields in org.apache.axiom.soap.impl.builder declared as OMNamespace
private  OMNamespace StAXSOAPModelBuilder.envelopeNamespace
           
 

Methods in org.apache.axiom.soap.impl.builder that return OMNamespace
 OMNamespace StAXSOAPModelBuilder.getEnvelopeNamespace()