![JAR search and dependency download from the Maven repository](/logo.png)
com.thaiopensource.relaxng.parse.sax.SAXParseReceiver Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jing Show documentation
Show all versions of jing Show documentation
A branch of Jing used by the Nu Html Checker. (Jing is a tool for validating documents against RelaxNG schemas.)
The newest version!
package com.thaiopensource.relaxng.parse.sax;
import com.thaiopensource.relaxng.parse.ParseReceiver;
import com.thaiopensource.relaxng.parse.ParsedPatternFuture;
import com.thaiopensource.relaxng.parse.SchemaBuilder;
import com.thaiopensource.relaxng.parse.Scope;
import org.xml.sax.ErrorHandler;
import org.xml.sax.SAXException;
import org.xml.sax.XMLReader;
public class SAXParseReceiver extends SAXSubParser implements ParseReceiver {
public SAXParseReceiver(UriResolver resolver, ErrorHandler eh) {
super(resolver, eh);
}
public ParsedPatternFuture installHandlers(XMLReader xr, SchemaBuilder schemaBuilder, Scope scope)
throws SAXException {
return new SchemaParser(xr, eh, schemaBuilder, null, scope);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy