AttributeList
interfacein packageorg.xml.sax
public interface AttributeList:
AttributeList

Deprecated SAX1 attribute list.

SAX2 code should use Attributes, which includes Namespace-aware lookup.

@example `klyn import org.xml.sax

attrs as AttributeList = null if attrs is not null: print(attrs.getLength())

Methods
Modifier and Type Member Description
public getLength
getLength() as Int
Returns the number of attributes in the list.
public getName
getName(index as Int) as String
Returns the attribute name at the given index.
public getType
getType(index as Int) as String
Returns the attribute type at the given index.
public getType
getType(name as String) as String
Returns the attribute type for a SAX1 qualified name.
public getValue
getValue(index as Int) as String
Returns the attribute value at the given index.
public getValue
getValue(name as String) as String
Returns the attribute value for a SAX1 qualified name.