java/alt2xml-bin/src/cz/frantovo/alt2xml/ReaderFinder.java
author František Kučera <franta-hg@frantovo.cz>
Sat, 07 Jun 2014 10:38:31 +0200
changeset 15 b890783e4043
permissions -rw-r--r--
META-INF/services, Alt2XmlReaderFactory, ReaderFinder
     1 package cz.frantovo.alt2xml;
     2 
     3 import org.xml.sax.SAXException;
     4 import org.xml.sax.XMLReader;
     5 
     6 /**
     7  *
     8  * @author Ing. František Kučera (frantovo.cz)
     9  */
    10 public interface ReaderFinder {
    11 
    12 	/**
    13 	 *
    14 	 * @param systemId systemId of the document which should be parsed
    15 	 * @return XMLReader appropriate for this document
    16 	 * @throws org.xml.sax.SAXException if we have no reader for given systemId
    17 	 */
    18 	public XMLReader findReader(String systemId) throws SAXException;
    19 
    20 }