protected void mustReload() {
EventListener[] listeners= this.getEventListenerList().getListeners(ActionListener.class);
for (int i = 0; i < listeners.length; i++) {
ActionListener actionListener = (ActionListener) listeners[i];
try {
actionListener.actionPerformed(new ActionEvent(this, TblInvoicesForDunning.TBL_MUSTRELOAD));
} catch (Throwable t) {
logger.error("Error adding action.",t);
}
}
}