* @param newLogDetail the new log messages that we have for the
*/
public void notifyListeners(ProgressStep current, Integer ratio,
Message currentPhaseSummary,
Message newLogDetail) {
ProgressUpdateEvent ev =
new ProgressUpdateEvent(current, ratio,
currentPhaseSummary, newLogDetail);
for (ProgressUpdateListener l : listeners) {
l.progressUpdate(ev);
}
}