JScrollPane.VERTICAL_SCROLLBAR_AS_NEEDED,
JScrollPane.HORIZONTAL_SCROLLBAR_AS_NEEDED));
split.setResizeWeight(0.5);
split.setDividerLocation(0.5);
//rechte seite
form = new TaggerEditForm((TaggerTrackTableModel)trackTable.getModel());
split.setRightComponent(new JScrollPane(form,
JScrollPane.VERTICAL_SCROLLBAR_AS_NEEDED,
JScrollPane.HORIZONTAL_SCROLLBAR_AS_NEEDED));
add(split, BorderLayout.CENTER);
JButton save = new JButton("Speichern");