Module java.xml

Class AttributeListImpl

java.lang.Object
org.xml.sax.helpers.AttributeListImpl
All Implemented Interfaces:
AttributeList

@Deprecated(since="1.5")
public class AttributeListImpl
extends Object
implements AttributeList
Deprecated.
This class implements a deprecated interface, AttributeList; that interface has been replaced by Attributes, which is implemented in the AttributesImpl helper class.
Default implementation for AttributeList.

AttributeList implements the deprecated SAX1 AttributeList interface, and has been replaced by the new SAX2 AttributesImpl interface.

This class provides a convenience implementation of the SAX AttributeList interface. This implementation is useful both for SAX parser writers, who can use it to provide attributes to the application, and for SAX application writers, who can use it to create a persistent copy of an element's attribute specifications:

 private AttributeList myatts;

 public void startElement (String name, AttributeList atts)
 {
              // create a persistent copy of the attribute list
              // for use outside this method
   myatts = new AttributeListImpl(atts);
   [...]
 }
 

Please note that SAX parsers are not required to use this class to provide an implementation of AttributeList; it is supplied only as an optional convenience. In particular, parser writers are encouraged to invent more efficient implementations.

Since:
1.4, SAX 1.0
See Also:
AttributeList, DocumentHandler.startElement(java.lang.String, org.xml.sax.AttributeList)