Here you can find the source of genSizedLabel(String text, float fontSize)
public static JLabel genSizedLabel(String text, float fontSize)
//package com.java2s; //License from project: Apache License import javax.swing.JLabel; public class Main { public static JLabel genSizedLabel(String text, float fontSize) { JLabel label = new JLabel(text, JLabel.CENTER); label.setFont(label.getFont().deriveFont(fontSize)); return label; }/*w ww . j ava 2 s .c o m*/ }