I'm working on my first java program. I'm making a Project Manager program.
The base idea is that i have a JList
which contains the names of the Co-workers. If you double click one of the names a JTabbedPane
will pop up a new tab and will be populated a JTable
what is containing the specific persons tasks.
And here comes the tricky part. I want to use this JTable
to modify the datas so i need to give a specific name to the JTable
so i can use that later on in my methods to call it.
The question is how can i create dynamic names to these tables so i can call it later (something like this: table+tabID).
OR
Is there a better solution to my problem?
Any help or advice is greatly appreciated.