You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@lucene.apache.org by rm...@apache.org on 2011/05/02 04:31:01 UTC

svn commit: r1098461 - in /lucene/dev/trunk/lucene/src/java/org/apache/lucene/index: FlushByRamOrCountsPolicy.java FlushPolicy.java IndexWriter.java IndexWriterConfig.java ThreadAffinityDocumentsWriterThreadPool.java

Author: rmuir
Date: Mon May  2 02:31:01 2011
New Revision: 1098461

URL: http://svn.apache.org/viewvc?rev=1098461&view=rev
Log:
LUCENE-3023: clear javadocs errors

Modified:
    lucene/dev/trunk/lucene/src/java/org/apache/lucene/index/FlushByRamOrCountsPolicy.java
    lucene/dev/trunk/lucene/src/java/org/apache/lucene/index/FlushPolicy.java
    lucene/dev/trunk/lucene/src/java/org/apache/lucene/index/IndexWriter.java
    lucene/dev/trunk/lucene/src/java/org/apache/lucene/index/IndexWriterConfig.java
    lucene/dev/trunk/lucene/src/java/org/apache/lucene/index/ThreadAffinityDocumentsWriterThreadPool.java

Modified: lucene/dev/trunk/lucene/src/java/org/apache/lucene/index/FlushByRamOrCountsPolicy.java
URL: http://svn.apache.org/viewvc/lucene/dev/trunk/lucene/src/java/org/apache/lucene/index/FlushByRamOrCountsPolicy.java?rev=1098461&r1=1098460&r2=1098461&view=diff
==============================================================================
--- lucene/dev/trunk/lucene/src/java/org/apache/lucene/index/FlushByRamOrCountsPolicy.java (original)
+++ lucene/dev/trunk/lucene/src/java/org/apache/lucene/index/FlushByRamOrCountsPolicy.java Mon May  2 02:31:01 2011
@@ -25,18 +25,18 @@ import org.apache.lucene.index.Documents
  * {@link IndexWriterConfig}.
  * 
  * <ul>
- * <li>{@link #onDelete(DocumentsWriterFlushControl, ThreadState)} - flushes
+ * <li>{@link #onDelete(DocumentsWriterFlushControl, DocumentsWriterPerThreadPool.ThreadState)} - flushes
  * based on the global number of buffered delete terms iff
  * {@link IndexWriterConfig#getMaxBufferedDeleteTerms()} is enabled</li>
- * <li>{@link #onInsert(DocumentsWriterFlushControl, ThreadState)} - flushes
+ * <li>{@link #onInsert(DocumentsWriterFlushControl, DocumentsWriterPerThreadPool.ThreadState)} - flushes
  * either on the number of documents per {@link DocumentsWriterPerThread} (
  * {@link DocumentsWriterPerThread#getNumDocsInRAM()}) or on the global active
  * memory consumption in the current indexing session iff
  * {@link IndexWriterConfig#getMaxBufferedDocs()} or
  * {@link IndexWriterConfig#getRAMBufferSizeMB()} is enabled respectively</li>
- * <li>{@link #onUpdate(DocumentsWriterFlushControl, ThreadState)} - calls
- * {@link #onInsert(DocumentsWriterFlushControl, ThreadState)} and
- * {@link #onDelete(DocumentsWriterFlushControl, ThreadState)} in order</li>
+ * <li>{@link #onUpdate(DocumentsWriterFlushControl, DocumentsWriterPerThreadPool.ThreadState)} - calls
+ * {@link #onInsert(DocumentsWriterFlushControl, DocumentsWriterPerThreadPool.ThreadState)} and
+ * {@link #onDelete(DocumentsWriterFlushControl, DocumentsWriterPerThreadPool.ThreadState)} in order</li>
  * </ul>
  * All {@link IndexWriterConfig} settings are used to mark
  * {@link DocumentsWriterPerThread} as flush pending during indexing with

Modified: lucene/dev/trunk/lucene/src/java/org/apache/lucene/index/FlushPolicy.java
URL: http://svn.apache.org/viewvc/lucene/dev/trunk/lucene/src/java/org/apache/lucene/index/FlushPolicy.java?rev=1098461&r1=1098460&r2=1098461&view=diff
==============================================================================
--- lucene/dev/trunk/lucene/src/java/org/apache/lucene/index/FlushPolicy.java (original)
+++ lucene/dev/trunk/lucene/src/java/org/apache/lucene/index/FlushPolicy.java Mon May  2 02:31:01 2011
@@ -43,7 +43,7 @@ import org.apache.lucene.util.SetOnce;
  * {@link DocumentsWriterFlushControl}, the {@link FlushPolicy} decides if a
  * {@link DocumentsWriterPerThread} needs flushing and mark it as
  * flush-pending via
- * {@link DocumentsWriterFlushControl#setFlushPending(ThreadState)}.
+ * {@link DocumentsWriterFlushControl#setFlushPending(DocumentsWriterPerThreadPool.ThreadState)}.
  * 
  * @see ThreadState
  * @see DocumentsWriterFlushControl
@@ -92,7 +92,7 @@ public abstract class FlushPolicy {
       ThreadState state);
 
   /**
-   * Called by {@link DocumentsWriter} to initialize the FlushPolicy
+   * Called by DocumentsWriter to initialize the FlushPolicy
    */
   protected synchronized void init(DocumentsWriter docsWriter) {
     writer.set(docsWriter);

Modified: lucene/dev/trunk/lucene/src/java/org/apache/lucene/index/IndexWriter.java
URL: http://svn.apache.org/viewvc/lucene/dev/trunk/lucene/src/java/org/apache/lucene/index/IndexWriter.java?rev=1098461&r1=1098460&r2=1098461&view=diff
==============================================================================
--- lucene/dev/trunk/lucene/src/java/org/apache/lucene/index/IndexWriter.java (original)
+++ lucene/dev/trunk/lucene/src/java/org/apache/lucene/index/IndexWriter.java Mon May  2 02:31:01 2011
@@ -82,7 +82,7 @@ import org.apache.lucene.util.MapBackedS
   documents (see {@link IndexWriterConfig#setRAMBufferSizeMB}) or the
   number of added documents (see {@link IndexWriterConfig#setMaxBufferedDocs(int)}).
   The default is to flush when RAM usage hits
-  {@value IndexWriterConfig#DEFAULT_RAM_BUFFER_SIZE_MB} MB. For
+  {@link IndexWriterConfig#DEFAULT_RAM_BUFFER_SIZE_MB} MB. For
   best indexing speed you should flush by RAM usage with a
   large RAM buffer. Additionally, if IndexWriter reaches the configured number of
   buffered deletes (see {@link IndexWriterConfig#setMaxBufferedDeleteTerms})

Modified: lucene/dev/trunk/lucene/src/java/org/apache/lucene/index/IndexWriterConfig.java
URL: http://svn.apache.org/viewvc/lucene/dev/trunk/lucene/src/java/org/apache/lucene/index/IndexWriterConfig.java?rev=1098461&r1=1098460&r2=1098461&view=diff
==============================================================================
--- lucene/dev/trunk/lucene/src/java/org/apache/lucene/index/IndexWriterConfig.java (original)
+++ lucene/dev/trunk/lucene/src/java/org/apache/lucene/index/IndexWriterConfig.java Mon May  2 02:31:01 2011
@@ -538,7 +538,7 @@ public final class IndexWriterConfig imp
    * IndexWriter to assign thread-states to incoming indexing threads. If no
    * {@link DocumentsWriterPerThreadPool} is set {@link IndexWriter} will use
    * {@link ThreadAffinityDocumentsWriterThreadPool} with max number of
-   * thread-states set to {@value DocumentsWriterPerThreadPool#DEFAULT_MAX_THREAD_STATES} (see
+   * thread-states set to {@link DocumentsWriterPerThreadPool#DEFAULT_MAX_THREAD_STATES} (see
    * {@link DocumentsWriterPerThreadPool#DEFAULT_MAX_THREAD_STATES}).
    * </p>
    * <p>

Modified: lucene/dev/trunk/lucene/src/java/org/apache/lucene/index/ThreadAffinityDocumentsWriterThreadPool.java
URL: http://svn.apache.org/viewvc/lucene/dev/trunk/lucene/src/java/org/apache/lucene/index/ThreadAffinityDocumentsWriterThreadPool.java?rev=1098461&r1=1098460&r2=1098461&view=diff
==============================================================================
--- lucene/dev/trunk/lucene/src/java/org/apache/lucene/index/ThreadAffinityDocumentsWriterThreadPool.java (original)
+++ lucene/dev/trunk/lucene/src/java/org/apache/lucene/index/ThreadAffinityDocumentsWriterThreadPool.java Mon May  2 02:31:01 2011
@@ -19,6 +19,7 @@ import java.util.Map;
 import java.util.concurrent.ConcurrentHashMap;
 
 import org.apache.lucene.document.Document;
+import org.apache.lucene.index.DocumentsWriterPerThreadPool.ThreadState; //javadoc
 
 /**
  * A {@link DocumentsWriterPerThreadPool} implementation that tries to assign an