for (String filename : helpFiles) {
boolean helpFileMatches = searchJar(filename, topic);
//?+ boolean helpFileMatches = searchPlainText(filename, topic);
if (helpFileMatches) {
Document document = new Document(documentManager, null, filename); // TODO: Use this.getDocument()'s clipboard?
documentManager.addDocument(document);
//- boolean ok = selectWithinAnotherDocument(document, topic);
selectWithinAnotherDocument(document, topic);
return true;
}
}