: If you look at the Lucene factories, they all subclass from
: BaseTokenFilterFactory which then subclasses from
: BaseTokenStreamFactory. That last one does various things for the
: child factories (I don't know what they are).
Note also that if you really did copy the body of SynonymFilterFact
TokenFilterFactory is an interface. Your factory class has to
implement this interface.
If you look at the Lucene factories, they all subclass from
BaseTokenFilterFactory which then subclasses from
BaseTokenStreamFactory. That last one does various things for the
child factories (I don't know wha