org.apache.lucene.search.highlight

Interface Fragmenter

Known Implementing Classes:
NullFragmenter, SimpleFragmenter

public interface Fragmenter

Implements the policy for breaking text into multiple fragments for consideration by the Highlighter class. A sophisticated implementation may do this on the basis of detecting end of sentences in the text.
Author:
mark@searcharea.co.uk

Method Summary

boolean
isNewFragment(Token nextToken)
Test to see if this token from the stream should be held in a new TextFragment
void
start(String originalText)
Initializes the Fragmenter

Method Details

isNewFragment

public boolean isNewFragment(Token nextToken)
Test to see if this token from the stream should be held in a new TextFragment
Parameters:
nextToken -

start

public void start(String originalText)
Initializes the Fragmenter
Parameters:
originalText -

Copyright © 2000-2006 Apache Software Foundation. All Rights Reserved.