JComboBox commandComboBox = new JComboBox(commands);
commandComboBox.setSelectedIndex(0);
commandPanel.add(commandComboBox);
JButton sendButton = new JButton(" Send.. ");
sendButton
.addActionListener(new ConsoleSendButtonListener(commandComboBox
.getModel(),
m_mainFrame,
this));
commandPanel.add(sendButton, BorderLayout.EAST);