Return-Path: Delivered-To: apmail-lucene-java-commits-archive@www.apache.org Received: (qmail 26799 invoked from network); 19 Sep 2008 14:53:08 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.2) by minotaur.apache.org with SMTP; 19 Sep 2008 14:53:08 -0000 Received: (qmail 47029 invoked by uid 500); 19 Sep 2008 14:53:05 -0000 Delivered-To: apmail-lucene-java-commits-archive@lucene.apache.org Received: (qmail 46996 invoked by uid 500); 19 Sep 2008 14:53:05 -0000 Mailing-List: contact java-commits-help@lucene.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: java-dev@lucene.apache.org Delivered-To: mailing list java-commits@lucene.apache.org Received: (qmail 46987 invoked by uid 99); 19 Sep 2008 14:53:05 -0000 Received: from athena.apache.org (HELO athena.apache.org) (140.211.11.136) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 19 Sep 2008 07:53:05 -0700 X-ASF-Spam-Status: No, hits=-2000.0 required=10.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [140.211.11.4] (HELO eris.apache.org) (140.211.11.4) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 19 Sep 2008 14:52:05 +0000 Received: by eris.apache.org (Postfix, from userid 65534) id EC4CE23889FD; Fri, 19 Sep 2008 07:52:37 -0700 (PDT) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r697119 - in /lucene/java/branches/lucene_2_4/src/java/org/apache/lucene: analysis/package.html document/Document.java search/ConstantScoreQuery.java search/TopDocCollector.java search/payloads/PayloadSpanUtil.java util/OpenBitSet.java Date: Fri, 19 Sep 2008 14:52:37 -0000 To: java-commits@lucene.apache.org From: mikemccand@apache.org X-Mailer: svnmailer-1.0.8 Message-Id: <20080919145237.EC4CE23889FD@eris.apache.org> X-Virus-Checked: Checked by ClamAV on apache.org Author: mikemccand Date: Fri Sep 19 07:52:37 2008 New Revision: 697119 URL: http://svn.apache.org/viewvc?rev=697119&view=rev Log: LUCENE-1392 (on 2.4): small javadocs/extra imports fixes Modified: lucene/java/branches/lucene_2_4/src/java/org/apache/lucene/analysis/package.html lucene/java/branches/lucene_2_4/src/java/org/apache/lucene/document/Document.java lucene/java/branches/lucene_2_4/src/java/org/apache/lucene/search/ConstantScoreQuery.java lucene/java/branches/lucene_2_4/src/java/org/apache/lucene/search/TopDocCollector.java lucene/java/branches/lucene_2_4/src/java/org/apache/lucene/search/payloads/PayloadSpanUtil.java lucene/java/branches/lucene_2_4/src/java/org/apache/lucene/util/OpenBitSet.java Modified: lucene/java/branches/lucene_2_4/src/java/org/apache/lucene/analysis/package.html URL: http://svn.apache.org/viewvc/lucene/java/branches/lucene_2_4/src/java/org/apache/lucene/analysis/package.html?rev=697119&r1=697118&r2=697119&view=diff ============================================================================== --- lucene/java/branches/lucene_2_4/src/java/org/apache/lucene/analysis/package.html (original) +++ lucene/java/branches/lucene_2_4/src/java/org/apache/lucene/analysis/package.html Fri Sep 19 07:52:37 2008 @@ -93,7 +93,7 @@ {@link org.apache.lucene.document.Field}s.
  • The contrib/analyzers library located at the root of the Lucene distribution has a number of different Analyzer implementations to solve a variety of different problems related to searching. Many of the Analyzers are designed to analyze non-English languages.
  • -
  • The {@link org.apache.lucene.analysis.snowball contrib/snowball library} +
  • The contrib/snowball library located at the root of the Lucene distribution has Analyzer and TokenFilter implementations for a variety of Snowball stemmers. See http://snowball.tartarus.org Modified: lucene/java/branches/lucene_2_4/src/java/org/apache/lucene/document/Document.java URL: http://svn.apache.org/viewvc/lucene/java/branches/lucene_2_4/src/java/org/apache/lucene/document/Document.java?rev=697119&r1=697118&r2=697119&view=diff ============================================================================== --- lucene/java/branches/lucene_2_4/src/java/org/apache/lucene/document/Document.java (original) +++ lucene/java/branches/lucene_2_4/src/java/org/apache/lucene/document/Document.java Fri Sep 19 07:52:37 2008 @@ -188,8 +188,9 @@ /** Returns a List of all the fields in a document. *

    Note that fields which are not {@link Fieldable#isStored() stored} are - * not available in documents retrieved from the index, e.g. with {@link - * Hits#doc(int)}, {@link Searcher#doc(int)} or {@link IndexReader#document(int)}. + * not available in documents retrieved from the + * index, e.g. {@link Searcher#doc(int)} or {@link + * IndexReader#document(int)}. */ public final List getFields() { return fields; Modified: lucene/java/branches/lucene_2_4/src/java/org/apache/lucene/search/ConstantScoreQuery.java URL: http://svn.apache.org/viewvc/lucene/java/branches/lucene_2_4/src/java/org/apache/lucene/search/ConstantScoreQuery.java?rev=697119&r1=697118&r2=697119&view=diff ============================================================================== --- lucene/java/branches/lucene_2_4/src/java/org/apache/lucene/search/ConstantScoreQuery.java (original) +++ lucene/java/branches/lucene_2_4/src/java/org/apache/lucene/search/ConstantScoreQuery.java Fri Sep 19 07:52:37 2008 @@ -20,7 +20,6 @@ import org.apache.lucene.index.IndexReader; import java.io.IOException; -import java.util.BitSet; import java.util.Set; /** Modified: lucene/java/branches/lucene_2_4/src/java/org/apache/lucene/search/TopDocCollector.java URL: http://svn.apache.org/viewvc/lucene/java/branches/lucene_2_4/src/java/org/apache/lucene/search/TopDocCollector.java?rev=697119&r1=697118&r2=697119&view=diff ============================================================================== --- lucene/java/branches/lucene_2_4/src/java/org/apache/lucene/search/TopDocCollector.java (original) +++ lucene/java/branches/lucene_2_4/src/java/org/apache/lucene/search/TopDocCollector.java Fri Sep 19 07:52:37 2008 @@ -52,7 +52,7 @@ } /** Constructor to collect the top-scoring documents by using the given PQ. - * @hq the PQ to use by this instance. + * @param hq the PQ to use by this instance. */ protected TopDocCollector(PriorityQueue hq) { this.hq = hq; Modified: lucene/java/branches/lucene_2_4/src/java/org/apache/lucene/search/payloads/PayloadSpanUtil.java URL: http://svn.apache.org/viewvc/lucene/java/branches/lucene_2_4/src/java/org/apache/lucene/search/payloads/PayloadSpanUtil.java?rev=697119&r1=697118&r2=697119&view=diff ============================================================================== --- lucene/java/branches/lucene_2_4/src/java/org/apache/lucene/search/payloads/PayloadSpanUtil.java (original) +++ lucene/java/branches/lucene_2_4/src/java/org/apache/lucene/search/payloads/PayloadSpanUtil.java Fri Sep 19 07:52:37 2008 @@ -66,7 +66,7 @@ * Query should be rewritten for wild/fuzzy support. * * @param query - * @return + * @return payloads Collection * @throws IOException */ public Collection getPayloadsForQuery(Query query) throws IOException { Modified: lucene/java/branches/lucene_2_4/src/java/org/apache/lucene/util/OpenBitSet.java URL: http://svn.apache.org/viewvc/lucene/java/branches/lucene_2_4/src/java/org/apache/lucene/util/OpenBitSet.java?rev=697119&r1=697118&r2=697119&view=diff ============================================================================== --- lucene/java/branches/lucene_2_4/src/java/org/apache/lucene/util/OpenBitSet.java (original) +++ lucene/java/branches/lucene_2_4/src/java/org/apache/lucene/util/OpenBitSet.java Fri Sep 19 07:52:37 2008 @@ -26,7 +26,7 @@ /** An "open" BitSet implementation that allows direct access to the array of words * storing the bits. *

    - * Unlike java.util.bitet, the fact that bits are packed into an array of longs + * Unlike java.util.bitset, the fact that bits are packed into an array of longs * is part of the interface. This allows efficient implementation of other algorithms * by someone other than the author. It also allows one to efficiently implement * alternate serialization or interchange formats.