137138139140141142143144145146147
* @param cb box. * @param selected the format to select. */ private static void loadNameFormats(JComboBox cb, String selected) { NameFormat sel = null; NameFormat[] fmts = NameFormat.FORMATS; for (NameFormat fmt : fmts) { cb.addItem(fmt);
158159160161162163164165
* * @return format. */ private static String getSelectedFormat(JComboBox cb) { NameFormat fmt = (NameFormat)cb.getSelectedItem(); return fmt.getFormat(); }