JTabbedPane selection changes  
Author Message
Karsten Wutzke





PostPosted: 2008-3-19 15:51:00 Top

java-programmer, JTabbedPane selection changes Hello,

I couldn't find what would be the was to go to detect changes in a
JTabbedPane's selection...?

Can anyone give a hint please?

Karsten
 
Karsten Lentzsch





PostPosted: 2008-3-19 17:00:00 Top

java-programmer >> JTabbedPane selection changes Karsten Wutzke wrote:

> I couldn't find what would be the was to go to detect changes in a
> JTabbedPane's selection...?

Register a listener with its model, a SingleSelectionModel.
See JTabbedPane#getModel().

-Karsten