Here you can find the source of changeFontStyle(Font font, int style)
public static Font changeFontStyle(Font font, int style)
//package com.java2s; import java.awt.Font; import javax.swing.JComponent; public class Main { public static Font changeFontStyle(Font font, int style) { return new Font(font.getName(), style, font.getSize()); }//from ww w . j a v a2 s. co m public static void changeFontStyle(JComponent component, int style) { component.setFont(changeFontStyle(component.getFont(), style)); } }