small javadoc improvements

git-svn-id: https://svn.apache.org/repos/asf/lucene/java/trunk@178893 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Daniel Naber 2005-05-28 22:58:17 +00:00
parent 27597a5c71
commit a3f99b1f43
5 changed files with 10 additions and 6 deletions

View File

@ -1,6 +1,6 @@
<html>
<head>
<title>Jakarta Lucene Sandbox Analyzers</title>
<title>Apache Lucene Analyzers</title>
</head>
<body>
</body>

View File

@ -23,7 +23,7 @@ import java.util.Map;
import java.io.IOException;
/**
* Wraps another filters result and caches it. The caching
* Wraps another filter's result and caches it. The caching
* behavior is like {@link QueryFilter}. The purpose is to allow
* filters to simply filter, and then wrap with this class to add
* caching, keeping the two concerns decoupled yet composable.

View File

@ -25,8 +25,10 @@ import org.apache.lucene.index.TermPositions;
import org.apache.lucene.index.IndexReader;
/** A Query that matches documents containing a particular sequence of terms.
This may be combined with other terms with a {@link BooleanQuery}.
*/
* A PhraseQuery is built by QueryParser for input like <code>"new york"</code>.
*
* <p>This query may be combined with other terms or queries with a {@link BooleanQuery}.
*/
public class PhraseQuery extends Query {
private String field;
private Vector terms = new Vector();

View File

@ -22,7 +22,8 @@ import org.apache.lucene.index.Term;
import org.apache.lucene.index.TermEnum;
import org.apache.lucene.index.IndexReader;
/** A Query that matches documents containing terms with a specified prefix. */
/** A Query that matches documents containing terms with a specified prefix. A PrefixQuery
* is built by QueryParser for input like <code>app*</code>. */
public class PrefixQuery extends Query {
private Term prefix;

View File

@ -23,7 +23,8 @@ import org.apache.lucene.index.TermEnum;
import org.apache.lucene.index.IndexReader;
/**
* A Query that matches documents within an exclusive range.
* A Query that matches documents within an exclusive range. A RangeQuery
* is built by QueryParser for input like <code>[010 TO 120]</code>.
*
* @version $Id$
*/