You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@lucene.apache.org by ch...@apache.org on 2012/04/23 03:22:55 UTC

svn commit: r1329018 - in /lucene/dev/trunk/lucene: analysis/phonetic/src/java/org/apache/lucene/analysis/phonetic/ facet/src/java/org/apache/lucene/facet/search/ facet/src/java/org/apache/lucene/facet/taxonomy/writercache/cl2o/ facet/src/java/org/apac...

Author: chrism
Date: Mon Apr 23 01:22:54 2012
New Revision: 1329018

URL: http://svn.apache.org/viewvc?rev=1329018&view=rev
Log:
LUCENE-4011: Fixed more broken javadoc links

Modified:
    lucene/dev/trunk/lucene/analysis/phonetic/src/java/org/apache/lucene/analysis/phonetic/BeiderMorseFilter.java
    lucene/dev/trunk/lucene/facet/src/java/org/apache/lucene/facet/search/StandardFacetsAccumulator.java
    lucene/dev/trunk/lucene/facet/src/java/org/apache/lucene/facet/search/TotalFacetCounts.java
    lucene/dev/trunk/lucene/facet/src/java/org/apache/lucene/facet/taxonomy/writercache/cl2o/CompactLabelToOrdinal.java
    lucene/dev/trunk/lucene/facet/src/java/org/apache/lucene/facet/taxonomy/writercache/lru/NameIntCacheLRU.java
    lucene/dev/trunk/lucene/facet/src/java/org/apache/lucene/util/collections/ArrayHashMap.java
    lucene/dev/trunk/lucene/facet/src/java/org/apache/lucene/util/collections/FloatToObjectMap.java
    lucene/dev/trunk/lucene/facet/src/java/org/apache/lucene/util/collections/IntHashSet.java
    lucene/dev/trunk/lucene/facet/src/java/org/apache/lucene/util/collections/IntToDoubleMap.java
    lucene/dev/trunk/lucene/facet/src/java/org/apache/lucene/util/collections/IntToIntMap.java
    lucene/dev/trunk/lucene/facet/src/java/org/apache/lucene/util/collections/IntToObjectMap.java
    lucene/dev/trunk/lucene/facet/src/java/org/apache/lucene/util/collections/ObjectToFloatMap.java
    lucene/dev/trunk/lucene/facet/src/java/org/apache/lucene/util/collections/ObjectToIntMap.java
    lucene/dev/trunk/lucene/memory/src/java/org/apache/lucene/index/memory/MemoryIndex.java

Modified: lucene/dev/trunk/lucene/analysis/phonetic/src/java/org/apache/lucene/analysis/phonetic/BeiderMorseFilter.java
URL: http://svn.apache.org/viewvc/lucene/dev/trunk/lucene/analysis/phonetic/src/java/org/apache/lucene/analysis/phonetic/BeiderMorseFilter.java?rev=1329018&r1=1329017&r2=1329018&view=diff
==============================================================================
--- lucene/dev/trunk/lucene/analysis/phonetic/src/java/org/apache/lucene/analysis/phonetic/BeiderMorseFilter.java (original)
+++ lucene/dev/trunk/lucene/analysis/phonetic/src/java/org/apache/lucene/analysis/phonetic/BeiderMorseFilter.java Mon Apr 23 01:22:54 2012
@@ -63,7 +63,7 @@ public final class BeiderMorseFilter ext
   private final OffsetAttribute offsetAtt = addAttribute(OffsetAttribute.class);
   
   /** 
-   * Calls {@link #BeiderMorseFilter(TokenStream, PhoneticEngine, Languages.LanguageSet) 
+   * Calls {@link #BeiderMorseFilter(TokenStream, PhoneticEngine, LanguageSet)
    *        BeiderMorseFilter(input, engine, null)}
    */
   public BeiderMorseFilter(TokenStream input, PhoneticEngine engine) {

Modified: lucene/dev/trunk/lucene/facet/src/java/org/apache/lucene/facet/search/StandardFacetsAccumulator.java
URL: http://svn.apache.org/viewvc/lucene/dev/trunk/lucene/facet/src/java/org/apache/lucene/facet/search/StandardFacetsAccumulator.java?rev=1329018&r1=1329017&r2=1329018&view=diff
==============================================================================
--- lucene/dev/trunk/lucene/facet/src/java/org/apache/lucene/facet/search/StandardFacetsAccumulator.java (original)
+++ lucene/dev/trunk/lucene/facet/src/java/org/apache/lucene/facet/search/StandardFacetsAccumulator.java Mon Apr 23 01:22:54 2012
@@ -230,9 +230,9 @@ public class StandardFacetsAccumulator e
   /**
    * Iterate over the documents for this partition and fill the facet arrays with the correct
    * count/complement count/value.
-   * @param internalCollector
+   * @param docids
    * @param facetArrays
-   * @param part
+   * @param partition
    * @throws IOException
    */
   private final void fillArraysForPartition(ScoredDocIDs docids,

Modified: lucene/dev/trunk/lucene/facet/src/java/org/apache/lucene/facet/search/TotalFacetCounts.java
URL: http://svn.apache.org/viewvc/lucene/dev/trunk/lucene/facet/src/java/org/apache/lucene/facet/search/TotalFacetCounts.java?rev=1329018&r1=1329017&r2=1329018&view=diff
==============================================================================
--- lucene/dev/trunk/lucene/facet/src/java/org/apache/lucene/facet/search/TotalFacetCounts.java (original)
+++ lucene/dev/trunk/lucene/facet/src/java/org/apache/lucene/facet/search/TotalFacetCounts.java Mon Apr 23 01:22:54 2012
@@ -71,7 +71,6 @@ public class TotalFacetCounts {
   
   /** 
    * Construct by key - from index Directory or by recomputing.
-   * @param key the key mapping of this total facet counts (index, taxonomy, category lists...) 
    */
   private TotalFacetCounts (TaxonomyReader taxonomy, FacetIndexingParams facetIndexingParams,
       int[][] counts, CreationType createType4Test) throws IOException, LockObtainFailedException {

Modified: lucene/dev/trunk/lucene/facet/src/java/org/apache/lucene/facet/taxonomy/writercache/cl2o/CompactLabelToOrdinal.java
URL: http://svn.apache.org/viewvc/lucene/dev/trunk/lucene/facet/src/java/org/apache/lucene/facet/taxonomy/writercache/cl2o/CompactLabelToOrdinal.java?rev=1329018&r1=1329017&r2=1329018&view=diff
==============================================================================
--- lucene/dev/trunk/lucene/facet/src/java/org/apache/lucene/facet/taxonomy/writercache/cl2o/CompactLabelToOrdinal.java (original)
+++ lucene/dev/trunk/lucene/facet/src/java/org/apache/lucene/facet/taxonomy/writercache/cl2o/CompactLabelToOrdinal.java Mon Apr 23 01:22:54 2012
@@ -449,7 +449,7 @@ public class CompactLabelToOrdinal exten
 
   /**
    * Opens the file and reloads the CompactLabelToOrdinal. The file it expects
-   * is generated from the {@link #flush()} command.
+   * is generated from the {@link #flush(File)} command.
    */
   static CompactLabelToOrdinal open(File file, float loadFactor,
                                     int numHashArrays) throws IOException {

Modified: lucene/dev/trunk/lucene/facet/src/java/org/apache/lucene/facet/taxonomy/writercache/lru/NameIntCacheLRU.java
URL: http://svn.apache.org/viewvc/lucene/dev/trunk/lucene/facet/src/java/org/apache/lucene/facet/taxonomy/writercache/lru/NameIntCacheLRU.java?rev=1329018&r1=1329017&r2=1329018&view=diff
==============================================================================
--- lucene/dev/trunk/lucene/facet/src/java/org/apache/lucene/facet/taxonomy/writercache/lru/NameIntCacheLRU.java (original)
+++ lucene/dev/trunk/lucene/facet/src/java/org/apache/lucene/facet/taxonomy/writercache/lru/NameIntCacheLRU.java Mon Apr 23 01:22:54 2012
@@ -4,6 +4,7 @@ import java.util.HashMap;
 import java.util.Iterator;
 import java.util.LinkedHashMap;
 import org.apache.lucene.facet.taxonomy.CategoryPath;
+import org.apache.lucene.facet.taxonomy.directory.DirectoryTaxonomyWriter; // javadocs
 
 /**
  * Licensed to the Apache Software Foundation (ASF) under one or more
@@ -119,7 +120,7 @@ class NameIntCacheLRU {
    * If cache is full remove least recently used entries from cache.
    * Return true if anything was removed, false otherwise.
    * 
-   * See comment in {@link DirectoryTaxonomyWriter#addToCache(String, Integer)}
+   * See comment in {@link DirectoryTaxonomyWriter#addToCache(CategoryPath, int)}
    * for an explanation why we clean 2/3rds of the cache, and not just one
    * entry.
    */ 

Modified: lucene/dev/trunk/lucene/facet/src/java/org/apache/lucene/util/collections/ArrayHashMap.java
URL: http://svn.apache.org/viewvc/lucene/dev/trunk/lucene/facet/src/java/org/apache/lucene/util/collections/ArrayHashMap.java?rev=1329018&r1=1329017&r2=1329018&view=diff
==============================================================================
--- lucene/dev/trunk/lucene/facet/src/java/org/apache/lucene/util/collections/ArrayHashMap.java (original)
+++ lucene/dev/trunk/lucene/facet/src/java/org/apache/lucene/util/collections/ArrayHashMap.java Mon Apr 23 01:22:54 2012
@@ -219,7 +219,7 @@ public class ArrayHashMap<K,V> implement
 
   /**
    * Adds a pair to the map. Takes the first empty position from the
-   * empty-linked-list's head - {@link firstEmpty}. New pairs are always
+   * empty-linked-list's head - {@link #firstEmpty}. New pairs are always
    * inserted to baseHash, and are followed by the old colliding pair.
    */
   private void prvt_put(K key, V value) {
@@ -312,7 +312,7 @@ public class ArrayHashMap<K,V> implement
 
   /**
    * Finds the actual index of a given key with it's baseHashIndex. Some methods
-   * use the baseHashIndex. If those call {@link #find()} there's no need to
+   * use the baseHashIndex. If those call {@link #find} there's no need to
    * re-calculate that hash.
    * 
    * @return the index of the given key, or 0 if the key wasn't found.

Modified: lucene/dev/trunk/lucene/facet/src/java/org/apache/lucene/util/collections/FloatToObjectMap.java
URL: http://svn.apache.org/viewvc/lucene/dev/trunk/lucene/facet/src/java/org/apache/lucene/util/collections/FloatToObjectMap.java?rev=1329018&r1=1329017&r2=1329018&view=diff
==============================================================================
--- lucene/dev/trunk/lucene/facet/src/java/org/apache/lucene/util/collections/FloatToObjectMap.java (original)
+++ lucene/dev/trunk/lucene/facet/src/java/org/apache/lucene/util/collections/FloatToObjectMap.java Mon Apr 23 01:22:54 2012
@@ -243,7 +243,7 @@ public class FloatToObjectMap<T> impleme
 
   /**
    * Adds a pair to the map. Takes the first empty position from the
-   * empty-linked-list's head - {@link firstEmpty}.
+   * empty-linked-list's head - {@link #firstEmpty}.
    * 
    * New pairs are always inserted to baseHash, and are followed by the old
    * colliding pair.
@@ -367,7 +367,7 @@ public class FloatToObjectMap<T> impleme
 
   /**
    * Find the actual index of a given key with it's baseHashIndex.<br>
-   * Some methods use the baseHashIndex. If those call {@link #find()} there's
+   * Some methods use the baseHashIndex. If those call {@link #find} there's
    * no need to re-calculate that hash.
    * 
    * @param key

Modified: lucene/dev/trunk/lucene/facet/src/java/org/apache/lucene/util/collections/IntHashSet.java
URL: http://svn.apache.org/viewvc/lucene/dev/trunk/lucene/facet/src/java/org/apache/lucene/util/collections/IntHashSet.java?rev=1329018&r1=1329017&r2=1329018&view=diff
==============================================================================
--- lucene/dev/trunk/lucene/facet/src/java/org/apache/lucene/util/collections/IntHashSet.java (original)
+++ lucene/dev/trunk/lucene/facet/src/java/org/apache/lucene/util/collections/IntHashSet.java Mon Apr 23 01:22:54 2012
@@ -206,15 +206,13 @@ public class IntHashSet {
 
   /**
    * Adds a pair to the map. Takes the first empty position from the
-   * empty-linked-list's head - {@link firstEmpty}.
+   * empty-linked-list's head - {@link #firstEmpty}.
    * 
    * New pairs are always inserted to baseHash, and are followed by the old
    * colliding pair.
    * 
    * @param key
    *            integer which maps the given value
-   * @param e
-   *            value which is being mapped using the given key
    */
   private void prvt_add(int key) {
     // Hash entry to which the new pair would be inserted
@@ -312,7 +310,7 @@ public class IntHashSet {
 
   /**
    * Find the actual index of a given key with it's baseHashIndex.<br>
-   * Some methods use the baseHashIndex. If those call {@link #find()} there's
+   * Some methods use the baseHashIndex. If those call {@link #find} there's
    * no need to re-calculate that hash.
    * 
    * @param key

Modified: lucene/dev/trunk/lucene/facet/src/java/org/apache/lucene/util/collections/IntToDoubleMap.java
URL: http://svn.apache.org/viewvc/lucene/dev/trunk/lucene/facet/src/java/org/apache/lucene/util/collections/IntToDoubleMap.java?rev=1329018&r1=1329017&r2=1329018&view=diff
==============================================================================
--- lucene/dev/trunk/lucene/facet/src/java/org/apache/lucene/util/collections/IntToDoubleMap.java (original)
+++ lucene/dev/trunk/lucene/facet/src/java/org/apache/lucene/util/collections/IntToDoubleMap.java Mon Apr 23 01:22:54 2012
@@ -243,7 +243,7 @@ public class IntToDoubleMap {
 
   /**
    * Adds a pair to the map. Takes the first empty position from the
-   * empty-linked-list's head - {@link firstEmpty}.
+   * empty-linked-list's head - {@link #firstEmpty}.
    * 
    * New pairs are always inserted to baseHash, and are followed by the old
    * colliding pair.
@@ -368,7 +368,7 @@ public class IntToDoubleMap {
 
   /**
    * Find the actual index of a given key with it's baseHashIndex.<br>
-   * Some methods use the baseHashIndex. If those call {@link #find()} there's
+   * Some methods use the baseHashIndex. If those call {@link #find} there's
    * no need to re-calculate that hash.
    * 
    * @param key

Modified: lucene/dev/trunk/lucene/facet/src/java/org/apache/lucene/util/collections/IntToIntMap.java
URL: http://svn.apache.org/viewvc/lucene/dev/trunk/lucene/facet/src/java/org/apache/lucene/util/collections/IntToIntMap.java?rev=1329018&r1=1329017&r2=1329018&view=diff
==============================================================================
--- lucene/dev/trunk/lucene/facet/src/java/org/apache/lucene/util/collections/IntToIntMap.java (original)
+++ lucene/dev/trunk/lucene/facet/src/java/org/apache/lucene/util/collections/IntToIntMap.java Mon Apr 23 01:22:54 2012
@@ -241,7 +241,7 @@ public class IntToIntMap {
 
   /**
    * Adds a pair to the map. Takes the first empty position from the
-   * empty-linked-list's head - {@link firstEmpty}.
+   * empty-linked-list's head - {@link #firstEmpty}.
    * 
    * New pairs are always inserted to baseHash, and are followed by the old
    * colliding pair.
@@ -365,7 +365,7 @@ public class IntToIntMap {
 
   /**
    * Find the actual index of a given key with it's baseHashIndex.<br>
-   * Some methods use the baseHashIndex. If those call {@link #find()} there's
+   * Some methods use the baseHashIndex. If those call {@link #find} there's
    * no need to re-calculate that hash.
    * 
    * @param key

Modified: lucene/dev/trunk/lucene/facet/src/java/org/apache/lucene/util/collections/IntToObjectMap.java
URL: http://svn.apache.org/viewvc/lucene/dev/trunk/lucene/facet/src/java/org/apache/lucene/util/collections/IntToObjectMap.java?rev=1329018&r1=1329017&r2=1329018&view=diff
==============================================================================
--- lucene/dev/trunk/lucene/facet/src/java/org/apache/lucene/util/collections/IntToObjectMap.java (original)
+++ lucene/dev/trunk/lucene/facet/src/java/org/apache/lucene/util/collections/IntToObjectMap.java Mon Apr 23 01:22:54 2012
@@ -242,7 +242,7 @@ public class IntToObjectMap<T> implement
 
   /**
    * Adds a pair to the map. Takes the first empty position from the
-   * empty-linked-list's head - {@link firstEmpty}.
+   * empty-linked-list's head - {@link #firstEmpty}.
    * 
    * New pairs are always inserted to baseHash, and are followed by the old
    * colliding pair.
@@ -367,7 +367,7 @@ public class IntToObjectMap<T> implement
 
   /**
    * Find the actual index of a given key with it's baseHashIndex.<br>
-   * Some methods use the baseHashIndex. If those call {@link #find()} there's
+   * Some methods use the baseHashIndex. If those call {@link #find} there's
    * no need to re-calculate that hash.
    * 
    * @param key

Modified: lucene/dev/trunk/lucene/facet/src/java/org/apache/lucene/util/collections/ObjectToFloatMap.java
URL: http://svn.apache.org/viewvc/lucene/dev/trunk/lucene/facet/src/java/org/apache/lucene/util/collections/ObjectToFloatMap.java?rev=1329018&r1=1329017&r2=1329018&view=diff
==============================================================================
--- lucene/dev/trunk/lucene/facet/src/java/org/apache/lucene/util/collections/ObjectToFloatMap.java (original)
+++ lucene/dev/trunk/lucene/facet/src/java/org/apache/lucene/util/collections/ObjectToFloatMap.java Mon Apr 23 01:22:54 2012
@@ -243,7 +243,7 @@ public class ObjectToFloatMap<K> {
 
   /**
    * Adds a pair to the map. Takes the first empty position from the
-   * empty-linked-list's head - {@link firstEmpty}.
+   * empty-linked-list's head - {@link #firstEmpty}.
    * 
    * New pairs are always inserted to baseHash, and are followed by the old
    * colliding pair.
@@ -369,7 +369,7 @@ public class ObjectToFloatMap<K> {
 
   /**
    * Find the actual index of a given key with it's baseHashIndex.<br>
-   * Some methods use the baseHashIndex. If those call {@link #find()} there's
+   * Some methods use the baseHashIndex. If those call {@link #find} there's
    * no need to re-calculate that hash.
    * 
    * @param key

Modified: lucene/dev/trunk/lucene/facet/src/java/org/apache/lucene/util/collections/ObjectToIntMap.java
URL: http://svn.apache.org/viewvc/lucene/dev/trunk/lucene/facet/src/java/org/apache/lucene/util/collections/ObjectToIntMap.java?rev=1329018&r1=1329017&r2=1329018&view=diff
==============================================================================
--- lucene/dev/trunk/lucene/facet/src/java/org/apache/lucene/util/collections/ObjectToIntMap.java (original)
+++ lucene/dev/trunk/lucene/facet/src/java/org/apache/lucene/util/collections/ObjectToIntMap.java Mon Apr 23 01:22:54 2012
@@ -243,7 +243,7 @@ public class ObjectToIntMap<K> {
 
   /**
    * Adds a pair to the map. Takes the first empty position from the
-   * empty-linked-list's head - {@link firstEmpty}.
+   * empty-linked-list's head - {@link #firstEmpty}.
    * 
    * New pairs are always inserted to baseHash, and are followed by the old
    * colliding pair.
@@ -369,7 +369,7 @@ public class ObjectToIntMap<K> {
 
   /**
    * Find the actual index of a given key with it's baseHashIndex.<br>
-   * Some methods use the baseHashIndex. If those call {@link #find()} there's
+   * Some methods use the baseHashIndex. If those call {@link #find} there's
    * no need to re-calculate that hash.
    * 
    * @param key

Modified: lucene/dev/trunk/lucene/memory/src/java/org/apache/lucene/index/memory/MemoryIndex.java
URL: http://svn.apache.org/viewvc/lucene/dev/trunk/lucene/memory/src/java/org/apache/lucene/index/memory/MemoryIndex.java?rev=1329018&r1=1329017&r2=1329018&view=diff
==============================================================================
--- lucene/dev/trunk/lucene/memory/src/java/org/apache/lucene/index/memory/MemoryIndex.java (original)
+++ lucene/dev/trunk/lucene/memory/src/java/org/apache/lucene/index/memory/MemoryIndex.java Mon Apr 23 01:22:54 2012
@@ -194,7 +194,7 @@ public class MemoryIndex {
   /** pos: positions[3*i], startOffset: positions[3*i +1], endOffset: positions[3*i +2] */
   private final int stride;
   
-  /** Could be made configurable; See {@link Document#setBoost(float)} */
+  /** Could be made configurable; */
   private static final float docBoost = 1.0f;
 
   private static final boolean DEBUG = false;