All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.ggp.base.util.ui.JLabelBold Maven / Gradle / Ivy

There is a newer version: 0.0.15
Show newest version
package org.ggp.base.util.ui;

import java.awt.Font;

import javax.swing.JLabel;

public class JLabelBold extends JLabel {
    private static final long serialVersionUID = 1L;
    public JLabelBold(String text) {
        super(text);
        setFont(new Font(getFont().getFamily(), Font.BOLD, getFont().getSize()+2));
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy