dnaber 2005/01/04 11:25:01 Modified: src/java/org/apache/lucene/index MultiReader.java IndexReader.java Log: fixing some deprecated/see tags in the javadoc comments Revision Changes Path 1.12 +2 -2 jakarta-lucene/src/java/org/apache/lucene/index/MultiReader.java Index: MultiReader.java =================================================================== RCS file: /home/cvs/jakarta-lucene/src/java/org/apache/lucene/index/MultiReader.java,v retrieving revision 1.11 retrieving revision 1.12 diff -u -r1.11 -r1.12 --- MultiReader.java 29 Dec 2004 21:35:45 -0000 1.11 +++ MultiReader.java 4 Jan 2005 19:25:01 -0000 1.12 @@ -247,7 +247,7 @@ } /** - * @see IndexReader#getFieldNames(IndexReader.FieldNames fldOption) + * @see IndexReader#getFieldNames(IndexReader.FieldOption) */ public Collection getFieldNames (IndexReader.FieldOption fieldNames) { // maintain a unique set of field names 1.43 +5 -5 jakarta-lucene/src/java/org/apache/lucene/index/IndexReader.java Index: IndexReader.java =================================================================== RCS file: /home/cvs/jakarta-lucene/src/java/org/apache/lucene/index/IndexReader.java,v retrieving revision 1.42 retrieving revision 1.43 diff -u -r1.42 -r1.43 --- IndexReader.java 29 Dec 2004 21:35:45 -0000 1.42 +++ IndexReader.java 4 Jan 2005 19:25:01 -0000 1.43 @@ -574,7 +574,7 @@ * @return Collection of Strings indicating the names of the fields * @throws IOException if there is a problem with accessing the index * - * @deprecated Replaced by [EMAIL PROTECTED] #getFieldNames (IndexReader.FieldOption fldOption)} + * @deprecated Replaced by [EMAIL PROTECTED] #getFieldNames(IndexReader.FieldOption)} */ public abstract Collection getFieldNames() throws IOException; @@ -587,7 +587,7 @@ * @return Collection of Strings indicating the names of the fields * @throws IOException if there is a problem with accessing the index * - * @deprecated Replaced by [EMAIL PROTECTED] #getFieldNames (IndexReader.FieldOption fldOption)} + * @deprecated Replaced by [EMAIL PROTECTED] #getFieldNames(IndexReader.FieldOption)} */ public abstract Collection getFieldNames(boolean indexed) throws IOException; @@ -597,7 +597,7 @@ * else only indexed fields without term vector info * @return Collection of Strings indicating the names of the fields * - * @deprecated Replaced by [EMAIL PROTECTED] #getFieldNames (IndexReader.FieldOption fldOption)} + * @deprecated Replaced by [EMAIL PROTECTED] #getFieldNames(IndexReader.FieldOption)} */ public Collection getIndexedFieldNames(boolean storedTermVector){ if(storedTermVector){ @@ -619,7 +619,7 @@ * @param tvSpec specifies which term vector information should be available for the fields * @return Collection of Strings indicating the names of the fields * - * @deprecated Replaced by [EMAIL PROTECTED] #getFieldNames (IndexReader.FieldOption fldOption)} + * @deprecated Replaced by [EMAIL PROTECTED] #getFieldNames(IndexReader.FieldOption)} */ public abstract Collection getIndexedFieldNames(Field.TermVector tvSpec);
--------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]