private void initGUI() {
setLayout(new GridBagLayout());
// table
model = new UneditableTableModel(new Object[][] {}, new String[] { I18N.translate("filename"),
I18N.translate("status") });
table.setModel(model);
table.getColumnModel().getColumn(1).setMinWidth(150);
JScrollPane scrollpane = new JScrollPane(table);
add(scrollpane, new GridBagConstraints(0, 0, 1, 1, 1.0, 1.0, GridBagConstraints.NORTH, GridBagConstraints.BOTH,