136137138139140141142
* @param elements the list elements * @return An editor that can be used in a table */ public static DefaultCellEditor newDropListEditor(ListElement[] elements) { return new ListElementCellEditor(newDropList(elements)); }
148149150151152153154
* @param comboBox * @return A cell editor */ public static ListElementCellEditor newDropListEditor(AutoResizingComboBox comboBox) { return new ListElementCellEditor(comboBox); }
188189190191192193194
200201202203204205206