make these javadoc comments

git-svn-id: https://svn.apache.org/repos/asf/lucene/dev/trunk@1377845 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Robert Muir 2012-08-27 20:43:52 +00:00
parent 4f76db5650
commit 682123b2fe
2 changed files with 7 additions and 7 deletions

View File

@ -63,13 +63,13 @@ public class Field implements IndexableField {
protected final FieldType type;
protected final String name;
// Field's value:
/** Field's value */
protected Object fieldsData;
// Pre-analyzed tokenStream for indexed fields; this is
// separate from fieldsData because you are allowed to
// have both; eg maybe field has a String value but you
// customize how it's tokenized:
/** Pre-analyzed tokenStream for indexed fields; this is
* separate from fieldsData because you are allowed to
* have both; eg maybe field has a String value but you
* customize how it's tokenized */
protected TokenStream tokenStream;
private transient TokenStream internalTokenStream;

View File

@ -27,10 +27,10 @@ import org.apache.lucene.analysis.TokenStream;
public final class TextField extends Field {
/* Indexed, tokenized, not stored. */
/** Indexed, tokenized, not stored. */
public static final FieldType TYPE_NOT_STORED = new FieldType();
/* Indexed, tokenized, stored. */
/** Indexed, tokenized, stored. */
public static final FieldType TYPE_STORED = new FieldType();
static {