Uses of Interface
org.xml.sax.Attributes

Packages that use Attributes
org.apache.xalan.processor Parses an XSLT stylesheet document (which may include and import other stylesheet documents) and produces a StylesheetRoot (a TRaX Templates object). 
org.apache.xalan.stree Implementation of the Xalan Source Tree, which is a DOM implementation that is optimized for XSLT processing and the needs of Xalan -- derived nodes can index the children, and, combined with specialized node iterators (and tree walkers) can provide optimal child retrieval. 
org.apache.xalan.trace Implementation of Xalan Trace events, for use by a debugger. 
org.apache.xalan.transformer In charge of run-time transformations and the production of result trees. 
org.apache.xalan.utils Implementation of Xalan utility classes. 
org.apache.xml.serialize.transition Translate SAX events, a DOM tree, or an XPath node-set return value into a stream. 
org.xml.sax SAX 2.0 interfaces. 
org.xml.sax.helpers SAX 2.0 implementation classes. 
 

Uses of Attributes in org.apache.xalan.processor
 

Methods in org.apache.xalan.processor with parameters of type Attributes
 void XSLTElementProcessor.startElement(StylesheetHandler handler, java.lang.String uri, java.lang.String localName, java.lang.String rawName, Attributes attributes)
          Receive notification of the start of an element.
 void ProcessorTemplateElem.startElement(StylesheetHandler handler, java.lang.String uri, java.lang.String localName, java.lang.String rawName, Attributes attributes)
          Receive notification of the start of an element.
 void ProcessorLRE.startElement(StylesheetHandler handler, java.lang.String uri, java.lang.String localName, java.lang.String rawName, Attributes attributes)
          Receive notification of the start of an element.
 void ProcessorUnknown.startElement(StylesheetHandler handler, java.lang.String uri, java.lang.String localName, java.lang.String rawName, Attributes attributes)
          Receive notification of the start of an element.
 void StylesheetPIHandler.startElement(java.lang.String namespaceURI, java.lang.String localName, java.lang.String qName, Attributes atts)
          The spec notes that "The xml-stylesheet processing instruction is allowed only in the prolog of an XML document.", so, at least for right now, I'm going to go ahead an throw a SAXException in order to stop the parse.
 void StylesheetHandler.startElement(java.lang.String uri, java.lang.String localName, java.lang.String rawName, Attributes attributes)
          **For advanced use only** Receive notification of the start of an element.
 

Uses of Attributes in org.apache.xalan.stree
 

Classes in org.apache.xalan.stree that implement Attributes
 class ElementImpl
           
 class ElementImplWithNS
           
 class IndexedElemImpl
           
 class IndexedElemWithNS
           
 

Methods in org.apache.xalan.stree with parameters of type Attributes
 void ElementImpl.setAttributes(Attributes atts)
          Set a list of attributes of this node.
 void SourceTreeHandler.startElement(java.lang.String ns, java.lang.String localName, java.lang.String name, Attributes atts)
          Implement the startElement event.
 

Uses of Attributes in org.apache.xalan.trace
 

Fields in org.apache.xalan.trace declared as Attributes
 Attributes GenerateEvent.m_atts
          **For advanced use only** The current attribute list.
 

Constructors in org.apache.xalan.trace with parameters of type Attributes
GenerateEvent.GenerateEvent(TransformerImpl processor, int eventType, java.lang.String name, Attributes atts)
          **For advanced use only** Constructor for startElement, endElement events.
 

Uses of Attributes in org.apache.xalan.transformer
 

Methods in org.apache.xalan.transformer with parameters of type Attributes
 void ResultTreeHandler.startElement(java.lang.String ns, java.lang.String localName, java.lang.String name, Attributes atts)
          Bottleneck the startElement event.
 

Uses of Attributes in org.apache.xalan.utils
 

Classes in org.apache.xalan.utils that implement Attributes
 class AttList
          **For internal use only** Wraps a DOM attribute list in a SAX Attributes.
 class MutableAttrListImpl
          **For advanced use only** Mutable version of AttributesImpl.
 

Methods in org.apache.xalan.utils with parameters of type Attributes
 void DOMBuilder.startElement(java.lang.String ns, java.lang.String localName, java.lang.String name, Attributes atts)
          Receive notification of the beginning of an element.
 void MutableAttrListImpl.addAttributes(Attributes atts)
          **For advanced use only** Add the contents of the attribute list to this list.
 

Constructors in org.apache.xalan.utils with parameters of type Attributes
MutableAttrListImpl.MutableAttrListImpl(Attributes atts)
          **For advanced use only** Copy an existing Attributes object.
 

Uses of Attributes in org.apache.xml.serialize.transition
 

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

Uses of Attributes in org.xml.sax
 

Methods in org.xml.sax with parameters of type Attributes
 void ContentHandler.startElement(java.lang.String namespaceURI, 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.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 DefaultHandler.startElement(java.lang.String uri, java.lang.String localName, java.lang.String qName, Attributes attributes)
          Receive notification of the start of an element.
 void XMLFilterImpl.startElement(java.lang.String uri, java.lang.String localName, java.lang.String qName, Attributes atts)
          Filter a start element event.
 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.
 

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



Copyright © 2000 Apache XML Project. All Rights Reserved.