Re: AbstractSAXEventGenerator query

2006-08-07 Thread Jack Park
Thanks! What I have done in the mean time is simply clone code from two classes, AbstractSAXEventGenerator and the class that extends it and, from that, written my own exporter that works fine! I don't have the results in front of me, and perhaps I should try another export just to prove it

Re: AbstractSAXEventGenerator query

2006-08-07 Thread Jukka Zitting
Hi, On 8/7/06, Stefan Guggisberg <[EMAIL PROTECTED]> wrote: AbstractSAXEventGenerator is a core class. i try to avoid making internal jackrabbit classes public in order to discourage their use from outside of the core package. core classes should not be externally referenced as they might change

Re: AbstractSAXEventGenerator query

2006-08-07 Thread Stefan Guggisberg
On 8/6/06, Jack Park <[EMAIL PROTECTED]> wrote: What might be the objections raised to turning this abstract class into a public one (in future distributions) for purposes of allowing others to write exporters in jackrabbit applications that have different behaviors? That would be done by externa

AbstractSAXEventGenerator query

2006-08-06 Thread Jack Park
What might be the objections raised to turning this abstract class into a public one (in future distributions) for purposes of allowing others to write exporters in jackrabbit applications that have different behaviors? That would be done by externally extending this class. (I realize that, as