Re: AbstractTransformer or AbstractSAXTransformer?

2003-03-08 Thread Jeff Turner
On Sat, Mar 08, 2003 at 04:27:41AM -0800, gv wrote: > I am writing a custom transformer that has to read all > the XML into a data structure, manipulate the > structure, then finally write everything in the > structure back out. DOMTransformer gives you a nice DOM to play with. --Jeff > From whe

RE: AbstractTransformer or AbstractSAXTransformer?

2003-03-08 Thread Reinhard Pötz
TECTED] > Sent: Saturday, March 08, 2003 1:28 PM > To: [EMAIL PROTECTED] > Subject: AbstractTransformer or AbstractSAXTransformer? > > > I am writing a custom transformer that has to read all > the XML into a data structure, manipulate the > structure, then finally write everythi

AbstractTransformer or AbstractSAXTransformer?

2003-03-08 Thread gv
I am writing a custom transformer that has to read all the XML into a data structure, manipulate the structure, then finally write everything in the structure back out. >From where would I call my manipulation code? Looks like I need to use AbstractSAXTransformer, but can this be done with Abstrac