DocumentFrequencyReport report =
new DocumentFrequencyReport("Word Frequency Report",
"Frequencies of each word in " + doc.getTitle(),
yoshikoder.getDictionary().getName(),
doc, map);
dia = new YKReportDialog(yoshikoder, report);
}
protected void onError() {
if (e instanceof TokenizationException){
DialogUtil.yelp(yoshikoder, "Tokenization Error", e);
} else if (e instanceof IOException){