mirror of https://github.com/apache/lucene.git
remove tags
git-svn-id: https://svn.apache.org/repos/asf/lucene/java/trunk@822781 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
742aca6a9d
commit
c11776d2c6
|
@ -43,8 +43,6 @@ import org.apache.lucene.analysis.standard.StandardTokenizer;
|
|||
* A default set of stopwords is used unless an alternative list is specified, but the
|
||||
* exclusion list is empty by default.
|
||||
* </p>
|
||||
*
|
||||
* @version $Id$
|
||||
*/
|
||||
public class GermanAnalyzer extends Analyzer {
|
||||
|
||||
|
|
|
@ -31,8 +31,6 @@ import org.apache.lucene.analysis.tokenattributes.TermAttribute;
|
|||
* not be stemmed at all. The stemmer used can be changed at runtime after the
|
||||
* filter object is created (as long as it is a {@link GermanStemmer}).
|
||||
* </p>
|
||||
*
|
||||
* @version $Id$
|
||||
*/
|
||||
public final class GermanStemFilter extends TokenFilter
|
||||
{
|
||||
|
|
|
@ -25,8 +25,6 @@ package org.apache.lucene.analysis.de;
|
|||
* "A Fast and Simple Stemming Algorithm for German Words" by Jörg
|
||||
* Caumanns (joerg.caumanns at isst.fhg.de).
|
||||
* </p>
|
||||
*
|
||||
* @version $Id$
|
||||
*/
|
||||
public class GermanStemmer
|
||||
{
|
||||
|
|
|
@ -42,8 +42,6 @@ import java.util.Set;
|
|||
* A default set of stopwords is used unless an alternative list is specified, but the
|
||||
* exclusion list is empty by default.
|
||||
* </p>
|
||||
*
|
||||
* @version $Id$
|
||||
*/
|
||||
public final class FrenchAnalyzer extends Analyzer {
|
||||
|
||||
|
|
|
@ -31,8 +31,6 @@ import java.io.IOException;
|
|||
* "\u0001yrtnuoc". This is useful when implementing efficient leading
|
||||
* wildcards search.
|
||||
* </p>
|
||||
*
|
||||
* @version $Id$
|
||||
*/
|
||||
public final class ReverseStringFilter extends TokenFilter {
|
||||
|
||||
|
|
|
@ -36,8 +36,6 @@ import org.apache.lucene.analysis.Tokenizer;
|
|||
* will not be indexed at all).
|
||||
* A default set of stopwords is used unless an alternative list is specified.
|
||||
* </p>
|
||||
*
|
||||
* @version $Id$
|
||||
*/
|
||||
public final class RussianAnalyzer extends Analyzer
|
||||
{
|
||||
|
|
|
@ -26,8 +26,6 @@ import org.apache.lucene.util.AttributeSource;
|
|||
/**
|
||||
* A RussianLetterTokenizer is a {@link Tokenizer} that extends {@link LetterTokenizer}
|
||||
* by also allowing the basic latin digits 0-9.
|
||||
*
|
||||
* @version $Id$
|
||||
*/
|
||||
|
||||
public class RussianLetterTokenizer extends CharTokenizer
|
||||
|
|
|
@ -28,8 +28,6 @@ import org.apache.lucene.analysis.tokenattributes.TermAttribute;
|
|||
* Normalizes token text to lower case.
|
||||
* @deprecated Use {@link LowerCaseFilter} instead, which has the same
|
||||
* functionality. This filter will be removed in Lucene 3.1
|
||||
*
|
||||
* @version $Id$
|
||||
*/
|
||||
public final class RussianLowerCaseFilter extends TokenFilter
|
||||
{
|
||||
|
|
|
@ -32,8 +32,6 @@ import java.io.IOException;
|
|||
* The input should be filtered by {@link LowerCaseFilter} before passing it to RussianStemFilter ,
|
||||
* because RussianStemFilter only works with lowercase characters.
|
||||
* </p>
|
||||
*
|
||||
* @version $Id$
|
||||
*/
|
||||
public final class RussianStemFilter extends TokenFilter
|
||||
{
|
||||
|
|
|
@ -19,9 +19,6 @@ package org.apache.lucene.analysis.ru;
|
|||
|
||||
/**
|
||||
* Russian stemming algorithm implementation (see http://snowball.sourceforge.net for detailed description).
|
||||
*
|
||||
*
|
||||
* @version $Id$
|
||||
*/
|
||||
class RussianStemmer
|
||||
{
|
||||
|
|
|
@ -31,9 +31,6 @@ import org.apache.lucene.analysis.tokenattributes.TermAttribute;
|
|||
|
||||
/**
|
||||
* Test case for RussianAnalyzer.
|
||||
*
|
||||
*
|
||||
* @version $Id$
|
||||
*/
|
||||
|
||||
public class TestRussianAnalyzer extends BaseTokenStreamTestCase
|
||||
|
|
|
@ -27,8 +27,6 @@ import java.io.File;
|
|||
/**
|
||||
* <code>HighFreqTerms</code> class extracts terms and their frequencies out
|
||||
* of an existing Lucene index.
|
||||
*
|
||||
* @version $Id$
|
||||
*/
|
||||
public class HighFreqTerms {
|
||||
|
||||
|
|
|
@ -32,8 +32,6 @@ import java.rmi.server.UnicastRemoteObject;
|
|||
|
||||
/**
|
||||
* A remote searchable implementation.
|
||||
*
|
||||
* @version $Id$
|
||||
*/
|
||||
public class RemoteSearchable
|
||||
extends UnicastRemoteObject
|
||||
|
|
|
@ -31,9 +31,6 @@ import java.util.Collections;
|
|||
import java.util.Set;
|
||||
import java.util.HashSet;
|
||||
|
||||
/**
|
||||
* @version $Id$
|
||||
*/
|
||||
public class TestRemoteSearchable extends LuceneTestCase {
|
||||
public TestRemoteSearchable(String name) {
|
||||
super(name);
|
||||
|
|
|
@ -23,9 +23,6 @@ import org.apache.lucene.analysis.tokenattributes.TermAttribute;
|
|||
|
||||
/**
|
||||
* Removes words that are too long or too short from the stream.
|
||||
*
|
||||
*
|
||||
* @version $Id$
|
||||
*/
|
||||
public final class LengthFilter extends TokenFilter {
|
||||
|
||||
|
|
|
@ -23,8 +23,6 @@ import org.apache.lucene.analysis.tokenattributes.TermAttribute;
|
|||
|
||||
/**
|
||||
* Normalizes token text to lower case.
|
||||
*
|
||||
* @version $Id$
|
||||
*/
|
||||
public final class LowerCaseFilter extends TokenFilter {
|
||||
public LowerCaseFilter(TokenStream in) {
|
||||
|
|
|
@ -27,9 +27,6 @@ import java.util.HashSet;
|
|||
|
||||
/**
|
||||
* Loader for text files that represent a list of stopwords.
|
||||
*
|
||||
*
|
||||
* @version $Id$
|
||||
*/
|
||||
public class WordlistLoader {
|
||||
|
||||
|
|
|
@ -39,8 +39,6 @@ import java.util.Set;
|
|||
* <li> As of 2.9, Tokens incorrectly identified as acronyms
|
||||
* are corrected (see <a href="https://issues.apache.org/jira/browse/LUCENE-1068">LUCENE-1608</a>
|
||||
* </ul>
|
||||
*
|
||||
* @version $Id$
|
||||
*/
|
||||
public class StandardAnalyzer extends Analyzer {
|
||||
private Set stopSet;
|
||||
|
|
|
@ -31,9 +31,6 @@ import java.io.IOException;
|
|||
* Class for accessing a compound stream.
|
||||
* This class implements a directory, but is limited to only read operations.
|
||||
* Directory methods that would normally modify data throw an exception.
|
||||
*
|
||||
*
|
||||
* @version $Id$
|
||||
*/
|
||||
class CompoundFileReader extends Directory {
|
||||
|
||||
|
|
|
@ -45,9 +45,6 @@ import java.io.IOException;
|
|||
* file. The {directory} that follows has that many entries. Each directory entry
|
||||
* contains a long pointer to the start of this file's data section, and a String
|
||||
* with that file's name.
|
||||
*
|
||||
*
|
||||
* @version $Id$
|
||||
*/
|
||||
final class CompoundFileWriter {
|
||||
|
||||
|
|
|
@ -34,8 +34,6 @@ import java.util.zip.DataFormatException;
|
|||
* Class responsible for access to stored document fields.
|
||||
* <p/>
|
||||
* It uses <segment>.fdt and <segment>.fdx; files.
|
||||
*
|
||||
* @version $Id$
|
||||
*/
|
||||
final class FieldsReader implements Cloneable {
|
||||
private final FieldInfos fieldInfos;
|
||||
|
|
|
@ -23,8 +23,6 @@ import java.util.HashSet;
|
|||
|
||||
/**
|
||||
* Filename filter that accept filenames and extensions only created by Lucene.
|
||||
*
|
||||
* @version $rcs = ' $Id: Exp $ ' ;
|
||||
*/
|
||||
public class IndexFileNameFilter implements FilenameFilter {
|
||||
|
||||
|
|
|
@ -19,8 +19,6 @@ package org.apache.lucene.index;
|
|||
|
||||
/**
|
||||
* Useful constants representing filenames and extensions used by lucene
|
||||
*
|
||||
* @version $rcs = ' $Id: Exp $ ' ;
|
||||
*/
|
||||
final class IndexFileNames {
|
||||
|
||||
|
|
|
@ -74,8 +74,6 @@ import java.util.Map;
|
|||
synchronization, you should <b>not</b> synchronize on the
|
||||
<code>IndexReader</code> instance; use your own
|
||||
(non-Lucene) objects instead.
|
||||
|
||||
@version $Id$
|
||||
*/
|
||||
public abstract class IndexReader implements Cloneable {
|
||||
|
||||
|
|
|
@ -30,10 +30,8 @@ import org.apache.lucene.index.DirectoryReader.MultiTermEnum;
|
|||
import org.apache.lucene.index.DirectoryReader.MultiTermPositions;
|
||||
import org.apache.lucene.search.DefaultSimilarity;
|
||||
|
||||
/** An IndexReader which reads multiple indexes, appending their content.
|
||||
*
|
||||
* @version $Id$
|
||||
*/
|
||||
/** An IndexReader which reads multiple indexes, appending
|
||||
* their content. */
|
||||
public class MultiReader extends IndexReader implements Cloneable {
|
||||
protected IndexReader[] subReaders;
|
||||
private int[] starts; // 1st docno for each segment
|
||||
|
|
|
@ -24,9 +24,6 @@ import org.apache.lucene.store.IndexInput;
|
|||
import java.io.IOException;
|
||||
import java.util.Arrays;
|
||||
|
||||
/**
|
||||
* @version $Id$
|
||||
*/
|
||||
class TermVectorsReader implements Cloneable {
|
||||
|
||||
// NOTE: if you make a new format, it must be larger than
|
||||
|
|
|
@ -25,9 +25,6 @@ import java.util.Set;
|
|||
/**
|
||||
* A query that wraps a filter and simply returns a constant score equal to the
|
||||
* query boost for every document in the filter.
|
||||
*
|
||||
*
|
||||
* @version $Id$
|
||||
*/
|
||||
public class ConstantScoreQuery extends Query {
|
||||
protected final Filter filter;
|
||||
|
|
|
@ -35,7 +35,6 @@ import java.text.Collator;
|
|||
* @deprecated Use {@link TermRangeQuery} for term ranges or
|
||||
* {@link NumericRangeQuery} for numeric ranges instead.
|
||||
* This class will be removed in Lucene 3.0.
|
||||
* @version $Id$
|
||||
*/
|
||||
public class ConstantScoreRangeQuery extends TermRangeQuery
|
||||
{
|
||||
|
|
|
@ -35,7 +35,6 @@ import java.text.DecimalFormat;
|
|||
* <p>Created: May 19, 2004 11:13:14 AM
|
||||
*
|
||||
* @since lucene 1.4
|
||||
* @version $Id$
|
||||
* @see org.apache.lucene.util.FieldCacheSanityChecker
|
||||
*/
|
||||
public interface FieldCache {
|
||||
|
|
|
@ -42,7 +42,6 @@ import org.apache.lucene.util.FieldCacheSanityChecker;
|
|||
* <p>Created: May 19, 2004 4:40:36 PM
|
||||
*
|
||||
* @since lucene 1.4
|
||||
* @version $Id$
|
||||
*/
|
||||
// TODO: change interface to FieldCache in 3.0 when removed
|
||||
class FieldCacheImpl implements ExtendedFieldCache {
|
||||
|
|
|
@ -33,7 +33,6 @@ package org.apache.lucene.search;
|
|||
* <p>Created: Feb 11, 2004 1:23:38 PM
|
||||
*
|
||||
* @since lucene 1.4
|
||||
* @version $Id$
|
||||
* @see ScoreDoc
|
||||
* @see TopFieldDocs
|
||||
*/
|
||||
|
|
|
@ -29,7 +29,6 @@ import java.util.Locale;
|
|||
* <p>Created: Feb 11, 2004 2:04:21 PM
|
||||
*
|
||||
* @since lucene 1.4
|
||||
* @version $Id$
|
||||
*/
|
||||
class FieldDocSortedHitQueue
|
||||
extends PriorityQueue {
|
||||
|
|
|
@ -31,7 +31,6 @@ import java.util.Locale;
|
|||
* <p>Created: Dec 8, 2003 12:56:03 PM
|
||||
*
|
||||
* @since lucene 1.4
|
||||
* @version $Id$
|
||||
* @see Searcher#search(Query,Filter,int,Sort)
|
||||
* @see FieldCache
|
||||
* @deprecated see {@link FieldValueHitQueue}
|
||||
|
|
|
@ -34,7 +34,6 @@ import java.util.Set;
|
|||
* <p>Created: Apr 20, 2004 8:58:29 AM
|
||||
*
|
||||
* @since 1.4
|
||||
* @version $Id$
|
||||
* @see CachingWrapperFilter
|
||||
*/
|
||||
public class FilteredQuery
|
||||
|
|
|
@ -24,7 +24,6 @@ package org.apache.lucene.search;
|
|||
* (on a multi-segment index) API.
|
||||
*
|
||||
* @see Searcher#search(Query,HitCollector)
|
||||
* @version $Id$
|
||||
* @deprecated Please use {@link Collector} instead.
|
||||
*/
|
||||
public abstract class HitCollector {
|
||||
|
|
|
@ -22,7 +22,6 @@ package org.apache.lucene.search;
|
|||
* query. Results are cached, so that searches after the first on the same
|
||||
* index using this filter are much faster.
|
||||
*
|
||||
* @version $Id$
|
||||
* @deprecated use a CachingWrapperFilter with QueryWrapperFilter
|
||||
*/
|
||||
public class QueryFilter extends CachingWrapperFilter {
|
||||
|
|
|
@ -24,7 +24,6 @@ package org.apache.lucene.search;
|
|||
* <p>Created: Feb 3, 2004 9:00:16 AM
|
||||
*
|
||||
* @since lucene 1.4
|
||||
* @version $Id$
|
||||
* @deprecated use {@link FieldComparator}
|
||||
*/
|
||||
public interface ScoreDocComparator {
|
||||
|
|
|
@ -96,7 +96,6 @@ import java.util.Arrays;
|
|||
* <p>Created: Feb 12, 2004 10:53:57 AM
|
||||
*
|
||||
* @since lucene 1.4
|
||||
* @version $Id$
|
||||
*/
|
||||
public class Sort
|
||||
implements Serializable {
|
||||
|
|
|
@ -44,7 +44,6 @@ import java.io.IOException;
|
|||
* Created: Apr 21, 2004 5:08:38 PM
|
||||
*
|
||||
*
|
||||
* @version $Id$
|
||||
* @since 1.4
|
||||
* @deprecated Please use {@link FieldComparatorSource} instead.
|
||||
*/
|
||||
|
|
|
@ -34,8 +34,6 @@ import java.io.Serializable;
|
|||
* instance on every call to the server, so hashCode/equals is very important in
|
||||
* that situation.
|
||||
*
|
||||
* @version $Id: SortComparatorSource.java 747019 2009-02-23 13:59:50Z
|
||||
* mikemccand $
|
||||
* @since 1.4
|
||||
* @deprecated Please use {@link FieldComparatorSource} instead.
|
||||
*/
|
||||
|
|
|
@ -34,7 +34,6 @@ import org.apache.lucene.util.StringHelper;
|
|||
* <p>Created: Feb 11, 2004 1:25:29 PM
|
||||
*
|
||||
* @since lucene 1.4
|
||||
* @version $Id$
|
||||
* @see Sort
|
||||
*/
|
||||
public class SortField
|
||||
|
|
|
@ -24,7 +24,6 @@ package org.apache.lucene.search;
|
|||
* <p>Created: Feb 12, 2004 8:58:46 AM
|
||||
*
|
||||
* @since lucene 1.4
|
||||
* @version $Id$
|
||||
* @see Searcher#search(Query,Filter,int,Sort)
|
||||
*/
|
||||
public class TopFieldDocs
|
||||
|
|
|
@ -28,8 +28,6 @@ import org.apache.lucene.index.Term;
|
|||
* <p>
|
||||
* Term enumerations are always ordered by Term.compareTo(). Each term in
|
||||
* the enumeration is greater than all that precede it.
|
||||
*
|
||||
* @version $Id$
|
||||
*/
|
||||
public class WildcardTermEnum extends FilteredTermEnum {
|
||||
final Term searchTerm;
|
||||
|
|
|
@ -28,8 +28,6 @@ import java.io.IOException;
|
|||
* }.run();
|
||||
* </pre>
|
||||
*
|
||||
*
|
||||
* @version $Id$
|
||||
* @see Directory#makeLock(String)
|
||||
*/
|
||||
public abstract class Lock {
|
||||
|
|
|
@ -29,8 +29,6 @@ import java.util.Set;
|
|||
* A memory-resident {@link Directory} implementation. Locking
|
||||
* implementation is by default the {@link SingleInstanceLockFactory}
|
||||
* but can be changed with {@link #setLockFactory}.
|
||||
*
|
||||
* @version $Id$
|
||||
*/
|
||||
public class RAMDirectory extends Directory implements Serializable {
|
||||
|
||||
|
|
|
@ -21,8 +21,6 @@ import java.io.IOException;
|
|||
|
||||
/**
|
||||
* A memory-resident {@link IndexInput} implementation.
|
||||
*
|
||||
* @version $Id$
|
||||
*/
|
||||
|
||||
class RAMInputStream extends IndexInput implements Cloneable {
|
||||
|
|
|
@ -21,8 +21,6 @@ import java.io.IOException;
|
|||
|
||||
/**
|
||||
* A memory-resident {@link IndexOutput} implementation.
|
||||
*
|
||||
* @version $Id$
|
||||
*/
|
||||
|
||||
public class RAMOutputStream extends IndexOutput {
|
||||
|
|
|
@ -31,9 +31,6 @@ import org.apache.lucene.store.IndexOutput;
|
|||
<li>inlinable get() method;</li>
|
||||
<li>store and load, as bit set or d-gaps, depending on sparseness;</li>
|
||||
</ul>
|
||||
|
||||
|
||||
@version $Id$
|
||||
*/
|
||||
public final class BitVector implements Cloneable {
|
||||
|
||||
|
|
|
@ -21,9 +21,6 @@ import org.apache.lucene.LucenePackage;
|
|||
|
||||
/**
|
||||
* Some useful constants.
|
||||
*
|
||||
*
|
||||
* @version $Id$
|
||||
**/
|
||||
|
||||
public final class Constants {
|
||||
|
|
|
@ -20,8 +20,6 @@ package org.apache.lucene.util;
|
|||
|
||||
/**
|
||||
* Methods for manipulating strings.
|
||||
*
|
||||
* $Id$
|
||||
*/
|
||||
public abstract class StringHelper {
|
||||
/**
|
||||
|
|
|
@ -32,10 +32,7 @@ import org.apache.lucene.index.*;
|
|||
import org.apache.lucene.search.*;
|
||||
import org.apache.lucene.queryParser.*;
|
||||
|
||||
/** JUnit adaptation of an older test case SearchTest.
|
||||
*
|
||||
* @version $Id$
|
||||
*/
|
||||
/** JUnit adaptation of an older test case SearchTest. */
|
||||
public class TestSearch extends LuceneTestCase {
|
||||
|
||||
/** Main for running test case by itself. */
|
||||
|
|
|
@ -32,11 +32,6 @@ import org.apache.lucene.util.LuceneTestCase;
|
|||
import junit.framework.TestSuite;
|
||||
import junit.textui.TestRunner;
|
||||
|
||||
|
||||
/** JUnit adaptation of an older test case DocTest.
|
||||
*
|
||||
* @version $Id$
|
||||
*/
|
||||
public class TestSearchForDuplicates extends LuceneTestCase {
|
||||
|
||||
/** Main for running test case by itself. */
|
||||
|
|
|
@ -26,9 +26,6 @@ import org.apache.lucene.store.MockRAMDirectory;
|
|||
|
||||
/**
|
||||
* Tests {@link Document} class.
|
||||
*
|
||||
*
|
||||
* @version $Id$
|
||||
*/
|
||||
public class TestBinaryDocument extends LuceneTestCase
|
||||
{
|
||||
|
|
|
@ -30,9 +30,6 @@ import org.apache.lucene.util.LuceneTestCase;
|
|||
|
||||
/**
|
||||
* Tests {@link Document} class.
|
||||
*
|
||||
*
|
||||
* @version $Id$
|
||||
*/
|
||||
public class TestDocument extends LuceneTestCase
|
||||
{
|
||||
|
|
|
@ -31,10 +31,6 @@ import org.apache.lucene.store._TestHelper;
|
|||
import org.apache.lucene.util._TestUtil;
|
||||
|
||||
|
||||
/**
|
||||
*
|
||||
* @version $Id$
|
||||
*/
|
||||
public class TestCompoundFile extends LuceneTestCase
|
||||
{
|
||||
/** Main for running test case by itself. */
|
||||
|
|
|
@ -37,10 +37,7 @@ import org.apache.lucene.store.FSDirectory;
|
|||
import org.apache.lucene.util.LuceneTestCase;
|
||||
|
||||
|
||||
/** JUnit adaptation of an older test case DocTest.
|
||||
*
|
||||
* @version $Id$
|
||||
*/
|
||||
/** JUnit adaptation of an older test case DocTest. */
|
||||
public class TestDoc extends LuceneTestCase {
|
||||
|
||||
/** Main for running test case by itself. */
|
||||
|
|
|
@ -67,10 +67,6 @@ import org.apache.lucene.store.SingleInstanceLockFactory;
|
|||
import org.apache.lucene.util.UnicodeUtil;
|
||||
import org.apache.lucene.util._TestUtil;
|
||||
|
||||
/**
|
||||
*
|
||||
* @version $Id$
|
||||
*/
|
||||
public class TestIndexWriter extends BaseTokenStreamTestCase {
|
||||
public TestIndexWriter(String name) {
|
||||
super(name, new HashSet(Arrays.asList(new String[]{
|
||||
|
|
|
@ -36,7 +36,6 @@ import java.io.IOException;
|
|||
|
||||
/**
|
||||
*
|
||||
* @version $Id$
|
||||
**/
|
||||
|
||||
public class TestBooleanPrefixQuery extends LuceneTestCase {
|
||||
|
|
|
@ -29,10 +29,6 @@ import org.apache.lucene.store.RAMDirectory;
|
|||
|
||||
import org.apache.lucene.util.LuceneTestCase;
|
||||
|
||||
/**
|
||||
*
|
||||
* @version $rcs = ' $Id$ ' ;
|
||||
*/
|
||||
public class TestBooleanScorer extends LuceneTestCase
|
||||
{
|
||||
|
||||
|
|
|
@ -36,7 +36,6 @@ import java.util.BitSet;
|
|||
* <p>Created: Apr 21, 2004 1:21:46 PM
|
||||
*
|
||||
*
|
||||
* @version $Id$
|
||||
* @since 1.4
|
||||
*/
|
||||
public class TestFilteredQuery extends LuceneTestCase {
|
||||
|
|
|
@ -38,7 +38,6 @@ import java.util.LinkedList;
|
|||
* This class tests the MultiPhraseQuery class.
|
||||
*
|
||||
*
|
||||
* @version $Id$
|
||||
*/
|
||||
public class TestMultiPhraseQuery extends LuceneTestCase
|
||||
{
|
||||
|
|
|
@ -38,8 +38,6 @@ import java.util.Set;
|
|||
|
||||
/**
|
||||
* Tests {@link MultiSearcher} class.
|
||||
*
|
||||
* @version $Id$
|
||||
*/
|
||||
public class TestMultiSearcher extends LuceneTestCase
|
||||
{
|
||||
|
|
|
@ -33,7 +33,6 @@ import java.io.IOException;
|
|||
* Tests {@link MultiSearcher} ranking, i.e. makes sure this bug is fixed:
|
||||
* http://issues.apache.org/bugzilla/show_bug.cgi?id=31841
|
||||
*
|
||||
* @version $Id: TestMultiSearcher.java 150492 2004-09-06 22:01:49Z dnaber $
|
||||
*/
|
||||
public class TestMultiSearcherRanking extends LuceneTestCase {
|
||||
|
||||
|
|
|
@ -28,10 +28,6 @@ import org.apache.lucene.util.English;
|
|||
|
||||
import java.io.IOException;
|
||||
|
||||
/**
|
||||
*
|
||||
* @version $rcs = ' $Id$ ' ;
|
||||
*/
|
||||
public class TestMultiThreadTermVectors extends LuceneTestCase {
|
||||
private RAMDirectory directory = new RAMDirectory();
|
||||
public int numDocs = 100;
|
||||
|
|
|
@ -32,9 +32,6 @@ import java.util.LinkedList;
|
|||
|
||||
/**
|
||||
* This class tests PhrasePrefixQuery class.
|
||||
*
|
||||
*
|
||||
* @version $Id$
|
||||
*/
|
||||
public class TestPhrasePrefixQuery
|
||||
extends LuceneTestCase
|
||||
|
|
|
@ -48,7 +48,6 @@ import org.apache.lucene.util.LuceneTestCase;
|
|||
* <p>Created: Feb 17, 2004 4:55:10 PM
|
||||
*
|
||||
* @since lucene 1.4
|
||||
* @version $Id$
|
||||
*/
|
||||
|
||||
public class TestSort extends LuceneTestCase implements Serializable {
|
||||
|
|
|
@ -29,10 +29,6 @@ import java.util.Random;
|
|||
import java.util.List;
|
||||
import java.io.IOException;
|
||||
|
||||
/**
|
||||
*
|
||||
* @version $Id$
|
||||
*/
|
||||
public class TestThreadSafe extends LuceneTestCase {
|
||||
Random r;
|
||||
Directory dir1;
|
||||
|
|
|
@ -33,9 +33,6 @@ import java.io.IOException;
|
|||
|
||||
/**
|
||||
* TestWildcard tests the '*' and '?' wildcard characters.
|
||||
*
|
||||
* @version $Id$
|
||||
*
|
||||
*/
|
||||
public class TestWildcard
|
||||
extends LuceneTestCase {
|
||||
|
|
|
@ -32,7 +32,6 @@ import java.util.Arrays;
|
|||
/**
|
||||
* This is a subclass of RAMDirectory that adds methods
|
||||
* intended to be used only by unit tests.
|
||||
* @version $Id: RAMDirectory.java 437897 2006-08-29 01:13:10Z yonik $
|
||||
*/
|
||||
|
||||
public class MockRAMDirectory extends RAMDirectory {
|
||||
|
|
|
@ -37,9 +37,6 @@ import org.apache.lucene.util.English;
|
|||
/**
|
||||
* JUnit testcase to test RAMDirectory. RAMDirectory itself is used in many testcases,
|
||||
* but not one of them uses an different constructor other than the default constructor.
|
||||
*
|
||||
*
|
||||
* @version $Id: RAMDirectory.java 150537 2004-09-28 22:45:26 +0200 (Di, 28 Sep 2004) cutting $
|
||||
*/
|
||||
public class TestRAMDirectory extends LuceneTestCase {
|
||||
|
||||
|
|
|
@ -25,9 +25,6 @@ import org.apache.lucene.store.RAMDirectory;
|
|||
|
||||
/**
|
||||
* <code>TestBitVector</code> tests the <code>BitVector</code>, obviously.
|
||||
*
|
||||
*
|
||||
* @version $Id$
|
||||
*/
|
||||
public class TestBitVector extends LuceneTestCase
|
||||
{
|
||||
|
|
Loading…
Reference in New Issue