Here you can find the source of installFont(Component c, Font font)
public static void installFont(Component c, Font font)
//package com.java2s; //License from project: Open Source License import java.awt.Component; import java.awt.Font; import javax.swing.plaf.UIResource; public class Main { public static void installFont(Component c, Font font) { /* 2329 */Font f = c.getFont(); /* 2330 */if ((f == null) || ((f instanceof UIResource))) /* 2331 */c.setFont(font); /* */} }