this.table.addColumn(i18n.tr("Einnahmen"), "einnahmen", new CurrencyFormatter(HBCIProperties.CURRENCY_DEFAULT_DE,HBCI.DECIMALFORMAT));
this.table.addColumn(i18n.tr("Ausgaben"), "ausgaben", new CurrencyFormatter(HBCIProperties.CURRENCY_DEFAULT_DE,HBCI.DECIMALFORMAT));
this.table.addColumn(i18n.tr("Sparquote"), "sparquote", new CurrencyFormatter(HBCIProperties.CURRENCY_DEFAULT_DE,HBCI.DECIMALFORMAT));
this.table.setRememberOrder(true);
this.table.setRememberColWidths(true);
this.table.setFormatter(new TableFormatter() {
public void format(TableItem item)
{
if (item == null || item.getData() == null)
return;
UmsatzEntry ue = (UmsatzEntry) item.getData();