I am creating a JFrame in the following way.
JFrame f=new JFrame("Title");
f.setUndecorated(true);
f.getRootPane().setWindowDecorationStyle(JRootPane.FRAME);
However, I am trying to display a custom tooltip text for the JFrame (by default it shows "Iconify"). Please help me out.
Thanks !