One of the columns in my assignment(B&S) actually contain data that could be put into a list. This would be the "specialties" column in the database file. It's nothing but a comma separated list of
string values, usually no more than 3 or 4 "specialties" per table row.
I present the data simply as is in my JTable. The table cell appears as: "value1, value2, value3", like so.
Do you think I will lose points for presenting this data this way? Should I use some other GUI component in the table cell to show this data, and if so what component? A combo box is used for selecting an item from a list. No selection is occurring here for these items. Is there some kind of list component (maybe a JTextArea?) I can use to show these values in list fashion? Or is this again beyond scope?
Any input is appreciated. Thanks.