How do I have my JDialog always-on-top Using JDK1.3

Hi,Please help me.
[32 byte] By [V.Vishnuvardhanreddya] at [2007-10-3 4:33:05]
# 1
Do you not just use a modal dialog, same as any JDK?
itchyscratchya at 2007-7-14 22:36:39 > top of Java-index,Desktop,Core GUI APIs...
# 2
How to do setAlwaysOnTop() in JDK1.3, That method available in JDK1.5
V.Vishnuvardhanreddya at 2007-7-14 22:36:39 > top of Java-index,Desktop,Core GUI APIs...
# 3
Copy the code from JDK1.5, otherwise its not supported.So your workaround is to use a JDialog that specifies a JFrame as its parent. That way whenever the frame is visible, the dialog will also be visible.
camickra at 2007-7-14 22:36:39 > top of Java-index,Desktop,Core GUI APIs...