Minor javadoc improvements.

git-svn-id: https://svn.apache.org/repos/asf/lucene/java/trunk@379189 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Doug Cutting 2006-02-20 18:11:02 +00:00
parent ca10021bca
commit f9f3161f57
15 changed files with 54 additions and 7 deletions

View File

@ -370,13 +370,13 @@
<packageset dir="contrib/highlighter/src/java"/>
<packageset dir="contrib/similarity/src/java"/>
<packageset dir="contrib/spellchecker/src/java"/>
<packageset dir="contrib/snowball/src/java" excludes="net/"/>
<packageset dir="contrib/snowball/src/java"/>
<packageset dir="contrib/swing/src/java"/>
<packageset dir="contrib/memory/src/java"/>
<group title="Core" packages="org.apache.*:org.apache.lucene.analysis:org.apache.lucene.analysis.standard*"/>
<group title="Analysis" packages="org.apache.lucene.analysis.*"/>
<group title="Snowball" packages="org.apache.lucene.analysis.snowball*"/>
<group title="Snowball Stemmers" packages="org.apache.lucene.analysis.snowball*:net.sf.snowball*"/>
<group title="Highlighter" packages="org.apache.lucene.search.highlight*"/>
<group title="MoreLikeThis" packages="org.apache.lucene.search.similar*"/>
<group title="SpellChecker" packages="org.apache.lucene.search.spell*"/>

View File

@ -0,0 +1,5 @@
<html><head></head>
<body>
Analyzer for Brazilian.
</body>
</html>

View File

@ -0,0 +1,5 @@
<html><head></head>
<body>
Analyzer for Chinese, Japanese and Korean.
</body>
</html>

View File

@ -0,0 +1,5 @@
<html><head></head>
<body>
Analyzer for Chinese.
</body>
</html>

View File

@ -0,0 +1,5 @@
<html><head></head>
<body>
Analyzer for Czech.
</body>
</html>

View File

@ -1,5 +1,5 @@
<html>
<html><head></head>
<body>
Support for indexing and searching of German text. The source files are encoded in UTF-8.
Analyzer for German.
</body>
</html>

View File

@ -0,0 +1,5 @@
<html><head></head>
<body>
Analyzer for Greek.
</body>
</html>

View File

@ -0,0 +1,5 @@
<html><head></head>
<body>
Analyzer for French.
</body>
</html>

View File

@ -0,0 +1,5 @@
<html><head></head>
<body>
Analyzer for Dutch.
</body>
</html>

View File

@ -1,5 +1,5 @@
<html>
<html><head></head>
<body>
Support for indexing and searching Russian text.
Analyzer for Russian.
</body>
</html>

View File

@ -1,5 +1,7 @@
<html>
<body>
Lucene analyzer that uses Snowball stemmers.
{@link org.apache.lucene.analysis.TokenFilter} and {@link
org.apache.lucene.analysis.Analyzer} implementations that use Snowball
stemmers.
</body>
</html>

View File

@ -0,0 +1,5 @@
<html><head></head>
<body>
Suggest alternate spellings for words.
</body>
</html>

View File

@ -210,6 +210,7 @@ public class DateTools {
return cal.getTime().getTime();
}
/** Specifies the time granularity. */
public static class Resolution {
public static final Resolution YEAR = new Resolution("year");

View File

@ -51,6 +51,7 @@ public final class Field implements Serializable {
private float boost = 1.0f;
/** Specifies whether and how a field should be stored. */
public static final class Store extends Parameter implements Serializable {
private Store(String name) {
@ -73,6 +74,7 @@ public final class Field implements Serializable {
public static final Store NO = new Store("NO");
}
/** Specifies whether and how a field should be indexed. */
public static final class Index extends Parameter implements Serializable {
private Index(String name) {
@ -106,6 +108,7 @@ public final class Field implements Serializable {
}
/** Specifies whether and how a field should have term vectors. */
public static final class TermVector extends Parameter implements Serializable {
private TermVector(String name) {

View File

@ -21,6 +21,7 @@ import org.apache.lucene.util.Parameter;
/** A clause in a BooleanQuery. */
public class BooleanClause implements java.io.Serializable {
/** Specifies how terms may occur in matching documents. */
public static final class Occur extends Parameter implements java.io.Serializable {
private Occur(String name) {