JIDE offers a pretty cool searchable JComboBox that would make finding a protocol in a long list of protocols easier. You just click on the ComboBox and start typing:
Here's some sample code:
import com.jidesoft.combobox.*;
import com.jidesoft.plaf.LookAndFeelFactory;
import com.jidesoft.swing.*;
JComboBox comboBox = new JComboBox(names);
comboBox.setEditable(false); // combobox searchable only works when combobox is not editable.
SearchableUtils.installSearchable(comboBox);
JIDE offers a pretty cool searchable JComboBox that would make finding a protocol in a long list of protocols easier. You just click on the ComboBox and start typing:
Here's some sample code: