I realize that the title probably seems very confusing, so I am gonna try give an example.
I have a JTable, which i wish to populate an ArrayList of a custom object called rapport.
The rapport object contains: int Number, String caseName, ArrayList, ArrayList, int fee.
So the headers for the JTable looks as following: Number, caseName, appendix , outlay, fee.
So for each rapport in the ArrayList i want a new row with the attributes from the rapport, and the two cells with arraylists is gonna be shown in a JComboBox.
I know to use cellEditor to make specific coloums to contain a JCombobox, but i have no idea's how to load the data from an ArrayList as described.
Any suggestions?