checkin of last changes for 2.9, mostly docs
[TestXSLT.git] / XSLTProcessorSaxon.m
1 //
2 //  XSLTProcessorSaxon.m
3 //  TestXSLT
4 //
5 //  Created by Marc Liyanage on Sun Jun 08 2003.
6 //  Copyright (c) 2003 __MyCompanyName__. All rights reserved.
7 //
8
9 #import "XSLTProcessorSaxon.h"
10
11
12 @implementation XSLTProcessorSaxon
13
14
15 - (int)processorType {
16
17         return PROCESSORTYPE_SAXON;
18
19 }
20
21
22 - (NSString *) getJAXPProcessorName {
23
24         return @"com.icl.saxon.TransformerFactoryImpl";
25         
26 }
27
28
29
30 @end