"Please confirm.", JOptionPane.YES_NO_OPTION,
JOptionPane.PLAIN_MESSAGE) == JOptionPane.OK_OPTION) {
int[] selectedIx = AwtShared.conList
.getSelectedIndices();
for (int i = 0; i < selectedIx.length; i++) {
FileSocket sel = (FileSocket) AwtShared.conList
.getModel().getElementAt(selectedIx[i]);
sel.reportError = false;
sel.haltNow();
}
}
} catch (HeadlessException he) {
he.printStackTrace();
}