Scott,
SAXTransformerFactory needs a new method named newXMLFilter which takes in a Templates object
as a
parameter. I know that there are other ways of getting an XMLFilter which contains a Transformer,
but the objective is to make it easy. For example there are two newTransformerHandler methods
one
of which takes in a Source and another takes in a Templates object. So why not have an additional
newXMLFilter which takes in a Templates object?
Thanks,
dims
public XMLFilter newXMLFilter(Templates templates){
try {
return new TrAXFilter(templates);
} catch(TransformerConfigurationException tfe) {
return null;
}
}
=====
Davanum Srinivas, JNI-FAQ Manager
http://www.jGuru.com/faq/JNI
__________________________________________________
Do You Yahoo!?
Yahoo! Calendar - Get organized for the holidays!
http://calendar.yahoo.com/
|