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
     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 }