Here you can find the source of makeFontBold(JComponent c)
public static void makeFontBold(JComponent c)
//package com.java2s; //License from project: Apache License import javax.swing.*; import java.awt.*; public class Main { public static void makeFontBold(JComponent c) { Font font = c.getFont();/*from w w w. j a va 2 s. c om*/ c.setFont(new Font(font.getName(), Font.BOLD, font.getSize())); } }