mirror of https://github.com/apache/lucene.git
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:
parent
83a36503b2
commit
640672cb63
|
@ -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
|
||||
{
|
||||
|
|
|
@ -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:
|
||||
|
|
|
@ -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 );
|
||||
}
|
||||
|
|
|
@ -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);
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue