java/alt2xml-lib-input/src/cz/frantovo/alt2xml/AltSAXParser.java
author František Kučera <franta-hg@frantovo.cz>
Sun, 08 Jun 2014 09:57:33 +0200
changeset 37 03f940508c72
child 111 e4900596abdb
permissions -rw-r--r--
AltSAXParser as standalone class
     1 /**
     2  * Alt2XML
     3  * Copyright © 2014 František Kučera (frantovo.cz)
     4  *
     5  * This program is free software: you can redistribute it and/or modify
     6  * it under the terms of the GNU General Public License as published by
     7  * the Free Software Foundation, either version 3 of the License, or
     8  * (at your option) any later version.
     9  *
    10  * This program is distributed in the hope that it will be useful,
    11  * but WITHOUT ANY WARRANTY; without even the implied warranty of
    12  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
    13  * GNU General Public License for more details.
    14  *
    15  * You should have received a copy of the GNU General Public License
    16  * along with this program. If not, see <http://www.gnu.org/licenses/>.
    17  */
    18 package cz.frantovo.alt2xml;
    19 
    20 import javax.xml.parsers.SAXParser;
    21 import org.xml.sax.Parser;
    22 import org.xml.sax.SAXException;
    23 import org.xml.sax.SAXNotRecognizedException;
    24 import org.xml.sax.SAXNotSupportedException;
    25 import org.xml.sax.XMLReader;
    26 
    27 /**
    28  *
    29  * @author Ing. František Kučera (frantovo.cz)
    30  */
    31 public class AltSAXParser extends SAXParser {
    32 
    33 	private final XMLReader xmlReader;
    34 
    35 	public AltSAXParser(XMLReader xmlReader) {
    36 		this.xmlReader = xmlReader;
    37 	}
    38 
    39 	@Override
    40 	@Deprecated
    41 	public Parser getParser() throws SAXException {
    42 		throw new SAXException("Není podporováno.");
    43 	}
    44 
    45 	@Override
    46 	public XMLReader getXMLReader() throws SAXException {
    47 		return xmlReader;
    48 	}
    49 
    50 	@Override
    51 	public boolean isNamespaceAware() {
    52 		return true;
    53 	}
    54 
    55 	@Override
    56 	public boolean isValidating() {
    57 		return false;
    58 	}
    59 
    60 	@Override
    61 	public void setProperty(String name, Object value) throws SAXNotRecognizedException, SAXNotSupportedException {
    62 		xmlReader.setProperty(name, value);
    63 	}
    64 
    65 	@Override
    66 	public Object getProperty(String name) throws SAXNotRecognizedException, SAXNotSupportedException {
    67 		return xmlReader.getProperty(name);
    68 	}
    69 }