Interface State
public interface State
Base class for all parser states.
-
Method Summary
Modifier and TypeMethodDescriptionvoid
characters
(char[] data, int start, int length) void
endElement
(String namespaceIRI, String localName, String qName) void
startElement
(String namespaceIRI, String localName, String qName, Attributes atts)
-
Method Details
-
startElement
void startElement(String namespaceIRI, String localName, String qName, Attributes atts) throws SAXException - Parameters:
namespaceIRI
- namespace IRIlocalName
- localNameqName
- qNameatts
- attributes- Throws:
SAXException
- SAX exception
-
endElement
- Parameters:
namespaceIRI
- namespace IRIlocalName
- localNameqName
- qName- Throws:
SAXException
- SAX exception
-
characters
- Parameters:
data
- datastart
- startlength
- length- Throws:
SAXException
- SAX exception
-