I have some code that uses JTabbedPane java 6 extension (it uses the method indexOfTabComponent(Component)) How can I make this code compatible with java 5?

Please don't tell me to upgrade to java 6, I can't.

Kind Regards

link|improve this question

54% accept rate
feedback

2 Answers

One option would be to extend JTabbedPane circa 1.5 and implement indexOfTabComponent(Component) in your extension, then switch your code to use your new extension.

link|improve this answer
feedback

You can do a lot with insertTab(), as seen in this example.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.