add @link in javadoc

git-svn-id: https://svn.apache.org/repos/asf/lucene/dev/trunk@981525 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Koji Sekiguchi 2010-08-02 14:33:06 +00:00
parent 83a36503b2
commit 640672cb63
4 changed files with 6 additions and 6 deletions

View File

@ -23,7 +23,7 @@ import org.apache.solr.common.params.HighlightParams;
import org.apache.solr.common.params.SolrParams;
/**
* Use the SimpleHTMLFormatter
* Use the {@link org.apache.lucene.search.highlight.SimpleHTMLFormatter}
*/
public class HtmlFormatter extends HighlightingPluginBase implements SolrFormatter
{

View File

@ -32,7 +32,7 @@ import org.apache.solr.common.params.SolrParams;
import org.apache.solr.common.util.NamedList;
/**
* Fragmenter that tries to produce snippets that "look" like a regular
* {@link org.apache.lucene.search.highlight.Fragmenter} that tries to produce snippets that "look" like a regular
* expression.
*
* <code>solrconfig.xml</code> parameters:

View File

@ -33,11 +33,11 @@ public interface SolrFormatter extends SolrInfoMBean, NamedListInitializedPlugin
public void init(NamedList args);
/**
* Return a formatter appropriate for this field.
* Return a {@link org.apache.lucene.search.highlight.Formatter} appropriate for this field.
*
* @param fieldName The name of the field
* @param params The params controlling Highlighting
* @return An appropriate Formatter.
* @return An appropriate {@link org.apache.lucene.search.highlight.Formatter}
*/
public Formatter getFormatter(String fieldName, SolrParams params );
}

View File

@ -33,11 +33,11 @@ public interface SolrFragmenter extends SolrInfoMBean, NamedListInitializedPlugi
public void init(NamedList args);
/**
* Return a fragmenter appropriate for this field.
* Return a {@link org.apache.lucene.search.highlight.Fragmenter} appropriate for this field.
*
* @param fieldName The name of the field
* @param params The params controlling Highlighting
* @return An appropriate Fragmenter.
* @return An appropriate {@link org.apache.lucene.search.highlight.Fragmenter}.
*/
public Fragmenter getFragmenter(String fieldName, SolrParams params);
}