JComboBox seatDesignationListField = new JComboBox(seatDesignationList.toArray());
seatDesignationListField.setSelectedItem(seatDesignation);
int result = JOptionPane.showConfirmDialog(DinnerPartyPanel.this.getRootPane(), seatDesignationListField,
"Select seat designation to switch with", JOptionPane.OK_CANCEL_OPTION);
if (result == JOptionPane.OK_OPTION) {
SeatDesignation switchSeatDesignation = (SeatDesignation) seatDesignationListField.getSelectedItem();
// TODO FIXME
throw new UnsupportedOperationException();
// solutionBusiness.doMove(new SwapMove(seatDesignation, switchSeatDesignation));
// solverAndPersistenceFrame.resetScreen();
}