| 5 |
ebruchez |
1 |
/**
|
|
|
2 |
* Copyright (C) 2004 Orbeon, Inc.
|
|
|
3 |
*
|
|
|
4 |
* This program is free software; you can redistribute it and/or modify it under the terms of the
|
|
|
5 |
* GNU Lesser General Public License as published by the Free Software Foundation; either version
|
|
|
6 |
* 2.1 of the License, or (at your option) any later version.
|
|
|
7 |
*
|
|
|
8 |
* This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY;
|
|
|
9 |
* without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
|
|
|
10 |
* See the GNU Lesser General Public License for more details.
|
|
|
11 |
*
|
|
|
12 |
* The full text of the license is available at http://www.gnu.org/copyleft/lesser.html
|
|
|
13 |
*/
|
|
|
14 |
package org.orbeon.oxf.processor.transformer.xslt;
|
|
|
15 |
|
|
|
16 |
public class XSLT2Transformer extends XSLTTransformer {
|
|
|
17 |
|
|
|
18 |
public XSLT2Transformer() {
|
|
|
19 |
// Set the schema for validation
|
|
|
20 |
// super(XSLT_URI); // XSLT 2.0 schema does't work!
|
|
|
21 |
super(null);
|
|
|
22 |
}
|
|
|
23 |
}
|