Object[] options = {TxtManager.getTxt("INFORMATION.OKBUTTON")};
int n = JOptionPane.showOptionDialog(container, scrollPane, TxtManager.getTxt("INFORMATION.CORRESPONDENCE.SELECTLD"),
JOptionPane.OK_OPTION, JOptionPane.PLAIN_MESSAGE, null, options, options[0]);
if (n == 0) {
if (table.getSelectedRow() != -1) {
int selectedRowNumber = table.convertRowIndexToModel(table.getSelectedRow());
LDTableModel model = (LDTableModel)table.getModel();
Vector dataVector = model.getDataVector();
Vector rowDatas = (Vector)dataVector.get(selectedRowNumber);
ld = (String)rowDatas.get(0);
}