When one of the panels present in a JTabbedPane is clicked, I need to perform a few actions at the start. Say, for example, I need to check the username and password. Only if those match, the particular panel operations need to be performed. Can you suggest any methods?
|
|
Not sure I fully understand your question, but I would do something like:
For example:
|
|||
|
|
|
|
The action to change the tab is triggered by a mouse listener in the UI class. it goes through and checks whether there is a tab at the clicked coordinate and if so, whether the tab is enabled. If that criteria is met, it will call please note that if the permissions check is a long running call (ie a call to a database or a server), you should use something like a |
|||
|
