Revision: 4037
http://bigdata.svn.sourceforge.net/bigdata/?rev=4037&view=rev
Author: thompsonbry
Date: 2010-12-21 21:10:00 +0000 (Tue, 21 Dec 2010)
Log Message:
-----------
Javadoc
Modified Paths:
--------------
branches/JOURNAL_HA_BRANCH/bigdata/src/java/com/bigdata/search/FullTextIndex.java
Modified: branches/JOURNAL_HA_BRANCH/bigdata/src/java/com/bigdata/search/FullTextIndex.java
===================================================================
--- branches/JOURNAL_HA_BRANCH/bigdata/src/java/com/bigdata/search/FullTextIndex.java 2010-12-21 20:02:17 UTC (rev 4036)
+++ branches/JOURNAL_HA_BRANCH/bigdata/src/java/com/bigdata/search/FullTextIndex.java 2010-12-21 21:10:00 UTC (rev 4037)
@@ -28,6 +28,8 @@
package com.bigdata.search;
+import info.aduna.i18n.languagetag.IanaLanguageTag;
+
import java.io.IOException;
import java.io.Reader;
import java.io.StringReader;
@@ -346,7 +348,12 @@
/**
* The name of the {@link IAnalyzerFactory} class which will be used to
* obtain analyzers when tokenizing documents and queries (default
- * {@value #DEFAULT_ANALYZER_FACTORY_CLASS}).
+ * {@value #DEFAULT_ANALYZER_FACTORY_CLASS}). The specified class MUST
+ * implement {@link IAnalyzerFactory} and MUST have a constructor with
+ * the following signature:
+ * <pre>
+ * public MyAnalyzerFactory(FullTextIndexer indexer)
+ * </pre>
*/
String ANALYZER_FACTORY_CLASS = FullTextIndex.class.getName()
+ ".analyzerFactoryClass";
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|