(Vector<T> items)
| 144 | /// |
| 145 | /// - `items`: set of items placed into the combo box model |
| 146 | public ComboBox(Vector<T> items) { |
| 147 | this(new DefaultListModel(items)); |
| 148 | } |
| 149 | |
| 150 | /// Creates a new instance of ComboBox |
| 151 | /// |
nothing calls this directly
no test coverage detected