java/alt2xml-out-xslt/src/cz/frantovo/alt2xml/out/xslt/XSLTAction.java
author František Kučera <franta-hg@frantovo.cz>
Mon, 16 Jun 2014 22:28:37 +0200
changeset 50 3af3ef97f33f
parent 49 java/alt2xml-out-xpath/src/cz/frantovo/alt2xml/out/xpath/XPathAction.java@bec481687c1b
child 111 e4900596abdb
permissions -rw-r--r--
out-xslt: class skeletons
franta-hg@43
     1
/**
franta-hg@43
     2
 * Alt2XML
franta-hg@43
     3
 * Copyright © 2014 František Kučera (frantovo.cz)
franta-hg@43
     4
 *
franta-hg@43
     5
 * This program is free software: you can redistribute it and/or modify
franta-hg@43
     6
 * it under the terms of the GNU General Public License as published by
franta-hg@43
     7
 * the Free Software Foundation, either version 3 of the License, or
franta-hg@43
     8
 * (at your option) any later version.
franta-hg@43
     9
 *
franta-hg@43
    10
 * This program is distributed in the hope that it will be useful,
franta-hg@43
    11
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
franta-hg@43
    12
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
franta-hg@43
    13
 * GNU General Public License for more details.
franta-hg@43
    14
 *
franta-hg@43
    15
 * You should have received a copy of the GNU General Public License
franta-hg@43
    16
 * along with this program. If not, see <http://www.gnu.org/licenses/>.
franta-hg@43
    17
 */
franta-hg@50
    18
package cz.frantovo.alt2xml.out.xslt;
franta-hg@43
    19
franta-hg@49
    20
import cz.frantovo.alt2xml.out.AbstractAction;
franta-hg@43
    21
import cz.frantovo.alt2xml.out.ActionContext;
franta-hg@49
    22
import cz.frantovo.alt2xml.out.OutputActionException;
franta-hg@49
    23
import javax.xml.parsers.SAXParser;
franta-hg@49
    24
import org.xml.sax.InputSource;
franta-hg@43
    25
franta-hg@43
    26
/**
franta-hg@43
    27
 *
franta-hg@43
    28
 * @author Ing. František Kučera (frantovo.cz)
franta-hg@43
    29
 */
franta-hg@50
    30
public class XSLTAction extends AbstractAction {
franta-hg@43
    31
franta-hg@50
    32
	public XSLTAction(ActionContext actionContext) {
franta-hg@43
    33
		super(actionContext);
franta-hg@43
    34
	}
franta-hg@43
    35
franta-hg@43
    36
	@Override
franta-hg@49
    37
	public void run(SAXParser parser, InputSource source) throws OutputActionException {
franta-hg@50
    38
		// TODO: XSLT
franta-hg@49
    39
		throw new UnsupportedOperationException("Not supported yet.");
franta-hg@43
    40
	}
franta-hg@43
    41
}