Interface AttributesEx
-
- All Superinterfaces:
org.xml.sax.Attributes
- All Known Implementing Classes:
AttributesExImpl
public interface AttributesEx extends org.xml.sax.Attributes
Attributes
extension that allows attribute values to be exposed asCharSequence
.All namespace URIs and local names are assumed to be interned.
- Author:
- Kohsuke Kawaguchi
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.lang.CharSequence
getData(int idx)
The same asAttributes.getValue(int)
java.lang.CharSequence
getData(java.lang.String nsUri, java.lang.String localName)
The same asAttributes.getValue(String,String)
-