org.ggp.base.util.ui.JLabelBold Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of alloy-ggp-base Show documentation
Show all versions of alloy-ggp-base Show documentation
A modified version of the GGP-Base library for Alloy.
The 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));
}
}