java/alt2xml-lib/src/cz/frantovo/alt2xml/ReaderFinder.java
author František Kučera <franta-hg@frantovo.cz>
Sat, 07 Jun 2014 15:42:48 +0200
changeset 22 23a12c58b57c
parent 16 b2fbb3570ae1
permissions -rw-r--r--
AltInputSource, alt2xml.sh, první fungující verze .properties readeru
franta-hg@15
     1
package cz.frantovo.alt2xml;
franta-hg@15
     2
franta-hg@15
     3
import org.xml.sax.SAXException;
franta-hg@15
     4
import org.xml.sax.XMLReader;
franta-hg@15
     5
franta-hg@15
     6
/**
franta-hg@15
     7
 *
franta-hg@15
     8
 * @author Ing. František Kučera (frantovo.cz)
franta-hg@15
     9
 */
franta-hg@15
    10
public interface ReaderFinder {
franta-hg@15
    11
franta-hg@15
    12
	/**
franta-hg@15
    13
	 *
franta-hg@15
    14
	 * @param systemId systemId of the document which should be parsed
franta-hg@15
    15
	 * @return XMLReader appropriate for this document
franta-hg@15
    16
	 * @throws org.xml.sax.SAXException if we have no reader for given systemId
franta-hg@15
    17
	 */
franta-hg@15
    18
	public XMLReader findReader(String systemId) throws SAXException;
franta-hg@15
    19
franta-hg@15
    20
}