Package org.iso_relax.verifier
Interface VerifierFilter
- All Known Implementing Classes:
VerifierFilterImpl
XMLFilter implementation that validates a document.
An instance of this interface can be obtained through the
Verifier.getVerifierFilter() method.
The implementation validates incoming SAX events and then pass it to the successive SAX handlers.
- Since:
- Feb. 23, 2001
- Version:
- Feb. 24, 2001
- Author:
- ASAMI, Tomoharu (asami@zeomtech.com)
-
Method Summary
Methods inherited from interface org.xml.sax.XMLReader
getContentHandler, getDTDHandler, getEntityResolver, getErrorHandler, getFeature, getProperty, parse, parse, setContentHandler, setDTDHandler, setEntityResolver, setErrorHandler, setFeature, setProperty
-
Method Details
-
isValid
checks if the document was valid.This method can be only called after this handler receives the endDocument event.
- Returns:
- true if the document was valid, false if not.
- Throws:
IllegalStateException- If this method is called before the endDocument event is dispatched.
-