All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.thaiopensource.relaxng.parse.sax.SAXParseReceiver Maven / Gradle / Ivy

Go to download

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