Here you can find the source of installFont(Component c, Font font)
public static void installFont(Component c, Font font)
//package com.java2s; import javax.swing.plaf.UIResource; import java.awt.*; public class Main { public static void installFont(Component c, Font font) { Font f = c.getFont();//from w ww . j a va 2 s. c o m if (f == null || f instanceof UIResource) { c.setFont(font); } } }