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

com.thaiopensource.relaxng.input.parse.sax.SAXParseInputFormat Maven / Gradle / Ivy

There is a newer version: 20241231
Show newest version
package com.thaiopensource.relaxng.input.parse.sax;

import com.thaiopensource.relaxng.input.parse.ParseInputFormat;
import com.thaiopensource.relaxng.input.parse.ElementAnnotationBuilderImpl;
import com.thaiopensource.relaxng.input.parse.CommentListImpl;
import com.thaiopensource.relaxng.input.parse.AnnotationsImpl;
import com.thaiopensource.relaxng.parse.Parseable;
import com.thaiopensource.relaxng.parse.sax.SAXParseable;
import com.thaiopensource.relaxng.edit.Pattern;
import com.thaiopensource.relaxng.edit.NameClass;
import com.thaiopensource.relaxng.edit.SourceLocation;
import com.thaiopensource.resolver.xml.sax.SAXResolver;
import org.xml.sax.ErrorHandler;
import org.xml.sax.InputSource;
import org.xml.sax.SAXException;

import javax.xml.transform.sax.SAXSource;

public class SAXParseInputFormat extends ParseInputFormat {
  public SAXParseInputFormat() {
    super(true);
  }

  public Parseable makeParseable(InputSource in, SAXResolver resolver, ErrorHandler eh) throws SAXException {
    return new SAXParseable(new SAXSource(resolver.createXMLReader(), in), resolver, eh);
  }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy