ProgressEvent evt = new ProgressEvent(this, "");
callback.progressStarted(evt);
}
private void progressEnded() {
ProgressEvent evt = new ProgressEvent(this, "");
callback.progressEnded(evt);
// TODO: We can't shutdown the notifier thread until all
// candidates have been examined.
// m_notifierThread.shutdown();
}