Java swingグローバルフォントの変更


     jframe     ,  main       :


public static void setUIFont()
{
	Font f = new Font("  ",Font.PLAIN,18);
	String   names[]={ "Label", "CheckBox", "PopupMenu","MenuItem", "CheckBoxMenuItem",
			"JRadioButtonMenuItem","ComboBox", "Button", "Tree", "ScrollPane",
			"TabbedPane", "EditorPane", "TitledBorder", "Menu", "TextArea",
			"OptionPane", "MenuBar", "ToolBar", "ToggleButton", "ToolTip",
			"ProgressBar", "TableHeader", "Panel", "List", "ColorChooser",
			"PasswordField","TextField", "Table", "Label", "Viewport",
			"RadioButtonMenuItem","RadioButton", "DesktopPane", "InternalFrame"
	}; 
	for (String item : names) {
		 UIManager.put(item+ ".font",f); 
	}
}