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

Packages that use OMAttribute
org.apache.axiom.om   
org.apache.axiom.om.impl.util   
org.apache.axiom.om.util   
org.apache.axiom.om.xpath   
 

Uses of OMAttribute in org.apache.axiom.om
 

Methods in org.apache.axiom.om that return OMAttribute
 OMAttribute OMElement.addAttribute(OMAttribute attr)
          Adds an attribute to this element.
 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)
           
 OMAttribute OMElement.getAttribute(javax.xml.namespace.QName qname)
          Returns a named attribute if present.
 

Methods in org.apache.axiom.om with parameters of type OMAttribute
 OMAttribute OMElement.addAttribute(OMAttribute attr)
          Adds an attribute to this element.
 void OMElement.removeAttribute(OMAttribute attr)
          Method removeAttribute
 

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

Methods in org.apache.axiom.om.impl.util with parameters of type OMAttribute
static void OMSerializerUtil.serializeAttribute(OMAttribute attr, javax.xml.stream.XMLStreamWriter writer)
          Deprecated. use serializeStartpart instead
 

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

Methods in org.apache.axiom.om.util with parameters of type OMAttribute
 boolean DigestGenerator.compareOMAttribute(OMAttribute attribute, OMAttribute comparingAttribute, java.lang.String digestAlgorithm)
          Compares two OMAttributes for the XML equality
 byte[] DigestGenerator.getDigest(OMAttribute attribute, java.lang.String digestAlgorithm)
          This method is an overloaded method for the digest generation for OMAttribute
 java.lang.String DigestGenerator.getExpandedName(OMAttribute attribute)
          This method is an overloaded method for getting the expanded name namespaceURI followed by the local name for OMAttribute
static void AttributeHelper.importOMAttribute(OMAttribute omAttribute, OMElement omElement)
          In Axiom, a single tree should always contain objects created from the same type of factory (eg: LinkedListImplFactory, DOMFactory, etc.,).
 

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

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

Fields in org.apache.axiom.om.xpath declared as OMAttribute
(package private)  OMAttribute DocumentNavigator.OMAttributeEx.attribute
           
 

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