Org.Xml.Sax.Helpers.AttributeListImpl Class
Default implementation for AttributeList.

See Also: AttributeListImpl Members

Syntax

[Android.Runtime.Register("org/xml/sax/helpers/AttributeListImpl", DoNotGenerateAcw=true)]
public class AttributeListImpl : Java.Lang.Object, Org.Xml.Sax.IAttributeList, IDisposable

Remarks

Default implementation for AttributeList.

This module, both source code and documentation, is in the Public Domain, and comes with NO WARRANTY. See for further information.

java Example

 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);
   [...]
 }
 

AttributeList implements the deprecated SAX1 Org.Xml.Sax.IAttributeList interface, and has been replaced by the new SAX2 Org.Xml.Sax.Helpers.AttributesImpl interface.

This class provides a convenience implementation of the SAX Org.Xml.Sax.IAttributeList 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:

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.

See Also

[Android Documentation]

Requirements

Namespace: Org.Xml.Sax.Helpers
Assembly: Mono.Android (in Mono.Android.dll)
Assembly Versions: 0.0.0.0
Since: Added in API level 1Deprecated since API level 1