I have a JTable
in my GUI
. In our system, there are various registrar. If a registrar adds a data, this data is added to a cell in the JTable.
If I simply add this data to the table, I lost the registrar information, which is very important for further operations.
What I try to do is that I need to add an extra information (who registered this data) to each cell in the JTable
but this extra information should not be seen in the table.
Briefly. If a cell is selected, I should access the registrar information.
I do not know whether it is possible to implement something like but any help and suggestions will be appreciated.