Uses of Interface
org.xml.sax.Attributes

Packages that use Attributes
org.apache.xerces.util   
org.apache.xml.resolver.readers Apache XML Commons Resolver Readers package. 
org.apache.xml.resolver.tools Apache XML Commons Resolver Tools package. 
org.apache.xml.serialize   
org.xml.sax This package provides the core SAX APIs. 
org.xml.sax.ext This package contains interfaces to SAX2 facilities that conformant SAX drivers won't necessarily support. 
org.xml.sax.helpers This package contains "helper" classes, including support for bootstrapping SAX-based applications. 
 

Uses of Attributes in org.apache.xerces.util
 

Classes in org.apache.xerces.util that implement Attributes
 class AttributesProxy
          Wraps XMLAttributes and makes it look like AttributeList and Attributes2.
 

Uses of Attributes in org.apache.xml.resolver.readers
 

Methods in org.apache.xml.resolver.readers with parameters of type Attributes
 boolean OASISXMLCatalogReader.checkAttributes(Attributes atts, java.lang.String attName)
           
 boolean OASISXMLCatalogReader.checkAttributes(Attributes atts, java.lang.String attName1, java.lang.String attName2)
           
 void OASISXMLCatalogReader.startElement(java.lang.String namespaceURI, java.lang.String localName, java.lang.String qName, Attributes atts)
          The SAX startElement method recognizes elements from the plain catalog format and instantiates CatalogEntry objects for them.
 void XCatalogReader.startElement(java.lang.String namespaceURI, java.lang.String localName, java.lang.String qName, Attributes atts)
          The SAX startElement method recognizes elements from the plain catalog format and instantiates CatalogEntry objects for them.
 void ExtendedXMLCatalogReader.startElement(java.lang.String namespaceURI, java.lang.String localName, java.lang.String qName, Attributes atts)
          The SAX startElement method recognizes elements from the plain catalog format and instantiates CatalogEntry objects for them.
 void SAXParserHandler.startElement(java.lang.String namespaceURI, java.lang.String localName, java.lang.String qName, Attributes atts)
           
 void SAXCatalogReader.startElement(java.lang.String namespaceURI, java.lang.String localName, java.lang.String qName, Attributes atts)
          The SAX2 startElement method.
 

Uses of Attributes in org.apache.xml.resolver.tools
 

Methods in org.apache.xml.resolver.tools with parameters of type Attributes
 void ResolvingXMLFilter.startElement(java.lang.String uri, java.lang.String localName, java.lang.String qName, Attributes atts)
          SAX ContentHandler API.
 

Uses of Attributes in org.apache.xml.serialize
 

Methods in org.apache.xml.serialize with parameters of type Attributes
 void TextSerializer.startElement(java.lang.String namespaceURI, java.lang.String localName, java.lang.String rawName, Attributes attrs)
          Deprecated.  
 void HTMLSerializer.startElement(java.lang.String namespaceURI, java.lang.String localName, java.lang.String rawName, Attributes attrs)
          Deprecated.  
 void XMLSerializer.startElement(java.lang.String namespaceURI, java.lang.String localName, java.lang.String rawName, Attributes attrs)
          Deprecated.  
 

Uses of Attributes in org.xml.sax
 

Methods in org.xml.sax with parameters of type Attributes
 void ContentHandler.startElement(java.lang.String uri, java.lang.String localName, java.lang.String qName, Attributes atts)
          Receive notification of the beginning of an element.
 

Uses of Attributes in org.xml.sax.ext
 

Subinterfaces of Attributes in org.xml.sax.ext
 interface Attributes2
          SAX2 extension to augment the per-attribute information provided though Attributes.
 

Classes in org.xml.sax.ext that implement Attributes
 class Attributes2Impl
          SAX2 extension helper for additional Attributes information, implementing the Attributes2 interface.
 

Methods in org.xml.sax.ext with parameters of type Attributes
 void Attributes2Impl.setAttributes(Attributes atts)
          Copy an entire Attributes object.
 

Constructors in org.xml.sax.ext with parameters of type Attributes
Attributes2Impl(Attributes atts)
          Copy an existing Attributes or Attributes2 object.
 

Uses of Attributes in org.xml.sax.helpers
 

Classes in org.xml.sax.helpers that implement Attributes
 class AttributesImpl
          Default implementation of the Attributes interface.
 

Methods in org.xml.sax.helpers with parameters of type Attributes
 void AttributesImpl.setAttributes(Attributes atts)
          Copy an entire Attributes object.
 void XMLReaderAdapter.startElement(java.lang.String uri, java.lang.String localName, java.lang.String qName, Attributes atts)
          Adapt a SAX2 start element event.
 void XMLFilterImpl.startElement(java.lang.String uri, java.lang.String localName, java.lang.String qName, Attributes atts)
          Filter a start element event.
 void DefaultHandler.startElement(java.lang.String uri, java.lang.String localName, java.lang.String qName, Attributes attributes)
          Receive notification of the start of an element.
 

Constructors in org.xml.sax.helpers with parameters of type Attributes
AttributesImpl(Attributes atts)
          Copy an existing Attributes object.