private JMenu _makeTransmitSelectedRowsMenu() {
final JMenu menu = new JMenu("Transmit Selected Rows to");
_tableSelectionSendManager = new SendManager(_connector, "table.select.rowList");
final ComboBoxModel comboBoxModel = _tableSelectionSendManager.getComboBoxModel();
// monitor changes in the ComboBoxModel to keep the menu up to date
comboBoxModel.addListDataListener(new ListDataListener() {
@Override
public void intervalAdded(ListDataEvent e) {
}
@Override