if (protocolJComboBox.getSelectedIndex() == 0) {
editProtocolJButton.setEnabled(false);
} else if (protocolJComboBox.getSelectedIndex() == protocolJComboBox.getItemCount() - 1) {
editProtocolJButton.setEnabled(false);
protocolJComboBox.setSelectedIndex(0);
new NewProtocolDialog(this, true);
} else {
editProtocolJButton.setEnabled(true);
}
validateInput();