Fonts changing

Hi friendsIn my application i want to change the fonts of individual type of component through some central way.Is their is any way to do that in a centralized manner.Thanks-Sunny Jain-
[220 byte] By [sunnyjaina] at [2007-11-27 8:30:10]
# 1
I tried it long ago.. I just create a class that specify a font for each component in my application.
Yannixa at 2007-7-12 20:20:42 > top of Java-index,Desktop,Core GUI APIs...
# 2
Need to do it when application is running.
sunnyjaina at 2007-7-12 20:20:42 > top of Java-index,Desktop,Core GUI APIs...
# 3
If you want to do it for all JTextFields in your application you use:UIManager.put("TextField.font", yourFontHere);at the start of your program.
camickra at 2007-7-12 20:20:42 > top of Java-index,Desktop,Core GUI APIs...