You are viewing a plain text version of this content. The canonical link for it is here.
Posted to java-commits@lucene.apache.org by ma...@apache.org on 2009/08/26 16:00:34 UTC

svn commit: r808011 - in /lucene/java/trunk/contrib/remote/src/java/org/apache/lucene/search: RMIRemoteSearchable.java RemoteCachingWrapperFilter.java

Author: markrmiller
Date: Wed Aug 26 14:00:33 2009
New Revision: 808011

URL: http://svn.apache.org/viewvc?rev=808011&view=rev
Log:
fix javadoc links to core classes in remote contrib

Modified:
    lucene/java/trunk/contrib/remote/src/java/org/apache/lucene/search/RMIRemoteSearchable.java
    lucene/java/trunk/contrib/remote/src/java/org/apache/lucene/search/RemoteCachingWrapperFilter.java

Modified: lucene/java/trunk/contrib/remote/src/java/org/apache/lucene/search/RMIRemoteSearchable.java
URL: http://svn.apache.org/viewvc/lucene/java/trunk/contrib/remote/src/java/org/apache/lucene/search/RMIRemoteSearchable.java?rev=808011&r1=808010&r2=808011&view=diff
==============================================================================
--- lucene/java/trunk/contrib/remote/src/java/org/apache/lucene/search/RMIRemoteSearchable.java (original)
+++ lucene/java/trunk/contrib/remote/src/java/org/apache/lucene/search/RMIRemoteSearchable.java Wed Aug 26 14:00:33 2009
@@ -20,11 +20,11 @@
 import java.rmi.Remote;
 
 /**
- * Marker interface to enable subclasses of {@link Searchable} to be used via
+ * Marker interface to enable subclasses of {@link org.apache.lucene.search.Searchable} to be used via
  * Java RMI. Classes implementing this interface can be used as a RMI -
  * "remote object".
  * <p>
- * {@link RMIRemoteSearchable} extends {@link Searchable} and can transparently
+ * {@link RMIRemoteSearchable} extends {@link org.apache.lucene.search.Searchable} and can transparently
  * be used as a such.
  * <p>
  * Example usage:

Modified: lucene/java/trunk/contrib/remote/src/java/org/apache/lucene/search/RemoteCachingWrapperFilter.java
URL: http://svn.apache.org/viewvc/lucene/java/trunk/contrib/remote/src/java/org/apache/lucene/search/RemoteCachingWrapperFilter.java?rev=808011&r1=808010&r2=808011&view=diff
==============================================================================
--- lucene/java/trunk/contrib/remote/src/java/org/apache/lucene/search/RemoteCachingWrapperFilter.java (original)
+++ lucene/java/trunk/contrib/remote/src/java/org/apache/lucene/search/RemoteCachingWrapperFilter.java Wed Aug 26 14:00:33 2009
@@ -23,12 +23,12 @@
 import org.apache.lucene.index.IndexReader;
 
 /**
- * Provides caching of {@link Filter}s themselves on the remote end of an RMI connection.
+ * Provides caching of {@link org.apache.lucene.search.Filter}s themselves on the remote end of an RMI connection.
  * The cache is keyed on Filter's hashCode(), so if it sees the same filter twice
  * it will reuse the original version.
  * <p/>
  * NOTE: This does NOT cache the Filter bits, but rather the Filter itself.
- * Thus, this works hand-in-hand with {@link CachingWrapperFilter} to keep both
+ * Thus, this works hand-in-hand with {@link org.apache.lucene.search.CachingWrapperFilter} to keep both
  * file Filter cache and the Filter bits on the remote end, close to the searcher.
  * <p/>
  * Usage:
@@ -47,7 +47,7 @@
   }
 
   /**
-   * Uses the {@link FilterManager} to keep the cache for a filter on the 
+   * Uses the {@link org.apache.lucene.search.FilterManager} to keep the cache for a filter on the 
    * searcher side of a remote connection.
    * @param reader the index reader for the Filter
    * @return the bitset
@@ -59,7 +59,7 @@
   }
   
   /**
-   * Uses the {@link FilterManager} to keep the cache for a filter on the 
+   * Uses the {@link org.apache.lucene.search.FilterManager} to keep the cache for a filter on the 
    * searcher side of a remote connection.
    * @param reader the index reader for the Filter
    * @return the DocIdSet