static JComboBox selectItem(fS item, final JComboBox cb) { if (cb != null) swing { cb.setSelectedItem(item); } ret cb; } static JComboBox selectItem(final JComboBox cb, fS item) { ret selectItem(item, cb); }