java/alt2xml-lib-input/src/cz/frantovo/alt2xml/ReaderFinder.java
author František Kučera <franta-hg@frantovo.cz>
Sat, 07 Jun 2014 22:09:32 +0200
changeset 32 ecc2731a5a46
parent 16 java/alt2xml-lib/src/cz/frantovo/alt2xml/ReaderFinder.java@b2fbb3570ae1
child 36 ad36a104623f
permissions -rw-r--r--
rename: alt2xml-lib → alt2xml-lib-input
     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 }