JToolTip over JTabbedPane Display Issue

Hi,When I use JToolTip over JTabbedPane, a portion of it goes behind the TabbedPane and is not visible. I think itz 'coz of the conflict between the heavyweight JTabbedPane and lightweighed JToolTip.Appreciate your help,regdsViji.
[266 byte] By [Viji_Panbarasana] at [2007-11-26 19:08:28]
# 1
JTabbedPane is light weight. Maybe you added an AWT component to the tabbed pane. Don't use AWT components in a Swing application.
camickra at 2007-7-9 21:02:08 > top of Java-index,Desktop,Core GUI APIs...
# 2
Hi Cami,Thanks for your response. I have used only JTabbedPane and JPanel , adding JComponents to it along with the JToolTip. None of the AWT Components are used. But even in Swing, I believe some of the JComponents are heavy weight by themselves.
Viji_Panbarasana at 2007-7-9 21:02:08 > top of Java-index,Desktop,Core GUI APIs...
# 3

All components that extend JComponent are Swing components and they are all light weight.

If you need further help then you need to create a [url http://homepage1.nifty.com/algafield/sscce.html]Short, Self Contained, Compilable and Executable, Example Program[/url] (SSCCE) that demonstrates the incorrect behaviour, because I can't guess exactly what you are doing based on the information provided.

And don't forget to use the [url http://forum.java.sun.com/help.jspa?sec=formatting]Code Formatting Tags[/url] so the code retains its original formatting.

camickra at 2007-7-9 21:02:08 > top of Java-index,Desktop,Core GUI APIs...