component = new JbsLabel();
}
break;
case 4 :
component = super.getTableCellRendererComponent(table, value, column, row);
TableLayoutData rightLayout = new TableLayoutData();
rightLayout.setAlignment(Alignment.ALIGN_RIGHT);
component.setLayoutData(rightLayout);
break;
case 5 :
component = super.getTableCellRendererComponent(table, value, column, row);
TableLayoutData sumPayedLayout = new TableLayoutData();
sumPayedLayout.setAlignment(Alignment.ALIGN_RIGHT);
component.setLayoutData(sumPayedLayout);
break;
case 6:
final JbsButton btnShowInvoice = new JbsButton("Ansehen");
btnShowInvoice.addActionListener(new ActionListener() {