public Iterator getLookupTokenIterator(JCas jcas)
throws AnnotatorInitializationException
{
List ltList = new ArrayList();
JFSIndexRepository indexes = jcas.getJFSIndexRepository();
Iterator btaItr = indexes.getAnnotationIndex(BaseToken.type).iterator();
while (btaItr.hasNext())
{
BaseToken bta = (BaseToken) btaItr.next();
if (!((bta instanceof NewlineToken)
|| (bta instanceof PunctuationToken)