org.iso_relax.verifier.impl
public abstract class VerifierImpl extends Object implements Verifier
This class is useful as the base class of the verifier implementation.
The only remaining method that has to be implemented by the derived
class is the getVerifierHandler
method. Please be noted
that applications can call the setErrorHandler
method
after the getVerifierHandler
method and that change
should take effect.
Version: $Id: VerifierImpl.java,v 1.4 2003/05/30 23:46:33 kkawa Exp $
Method Summary | |
---|---|
Object | getProperty(String property) |
VerifierFilter | getVerifierFilter() |
abstract VerifierHandler | getVerifierHandler() |
boolean | isFeature(String feature) |
void | setEntityResolver(EntityResolver resolver) |
void | setErrorHandler(ErrorHandler handler) |
void | setFeature(String feature, boolean value) |
void | setProperty(String property, Object value) |
boolean | verify(String uri) |
boolean | verify(InputSource source) |
boolean | verify(File f) |
boolean | verify(Node node) |