> I have already implemented in my application using annotations.
> and some changes to query input in my application.
How has it worked out for you?
> I don't see where you provide Analyzer annotation. It seems u forgot it.
Not forgotten (though it could make a good addition); the intention is
Searchable is a toolkit for Lucene that harnesses the power of
annotations to specify what properties to index and how to treat them.
A sample annotated interface:
public interface Sample extends Searchable {
public Integer getId();
@Indexed(boost=2.0F)
public String getName();
@Indexed