modernize javadocs

git-svn-id: https://svn.apache.org/repos/asf/lucene/dev/trunk@1502910 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Robert Muir 2013-07-13 23:03:13 +00:00
parent d1401238c8
commit 1a425dc577
1 changed files with 3 additions and 4 deletions

View File

@ -26,11 +26,10 @@ import org.apache.lucene.util.Bits;
* Constrains search results to only match those which also match a provided
* query.
*
* <p> This could be used, for example, with a {@link TermRangeQuery} on a suitably
* <p> This could be used, for example, with a {@link NumericRangeQuery} on a suitably
* formatted date field to implement date filtering. One could re-use a single
* QueryFilter that matches, e.g., only documents modified within the last
* week. The QueryFilter and TermRangeQuery would only need to be reconstructed
* once per day.
* CachingWrapperFilter(QueryWrapperFilter) that matches, e.g., only documents modified
* within the last week. This would only need to be reconstructed once per day.
*/
public class QueryWrapperFilter extends Filter {
private final Query query;