tl = TokenizationService.getTokenizationService().tokenize(doc);
tcache.putTokenList(doc, tl);
}
WordFrequencyMap map = new WordFrequencyMap(tl);
DocumentFrequencyReport report =
new DocumentFrequencyReport("Word Frequency Report",
"Frequencies of each word in " + doc.getTitle(),
yoshikoder.getDictionary().getName(),
doc, map);
dia = new YKReportDialog(yoshikoder, report);
}