How to set the Font name, style, size of the title in JInternalFrame?
I have written something in a class that extends JInternalFrame:
Font f = new Font(DEFAULT_FONT_NAME,
DEFAULT_FONT_STYLE, DEFAULT_FONT_SIZE);
setFont(f);
But I still can't to change it!
