Here you can find the source of applyComponentFont(JComponent c)
public static void applyComponentFont(JComponent c)
//package com.java2s; //License from project: LGPL import java.awt.Font; import javax.swing.JComponent; public class Main { private static final Font guifont = new Font("Arial", Font.BOLD, 12); public static void applyComponentFont(JComponent c) { c.setFont(guifont);/*ww w . j a v a2 s.co m*/ } }