Having several JComboBoxes with different values in a JTable
I want to create a JTable where in a specific column named "Tools" a JComboBox should be accommodated. the values of the JComboBox should differ for each row. In the constructor I have the following piece of code: public Table(List<Software> software_list) throws TransformerFactoryConfigurationError, TransformerException, Exception { //****** create an 2D array object containing the emulators list data to be sent to the table model ****** software_list_to_array = new Object[software_list.size()][5]; for(int x = 0; x < software_list_to_array.length; x++){ software_list_to_array[x][0] = software