CaRMtl/eric/GUI/ZDialog/ZLabel.java

25 lines
418 B
Java

/*
* To change this template, choose Tools | Templates
* and open the template in the editor.
*/
package eric.GUI.ZDialog;
import java.awt.Graphics;
import javax.swing.JLabel;
/**
*
* @author erichake
*/
public class ZLabel extends JLabel {
public void paint(Graphics g) {
super.paintComponent(g);
}
public ZLabel(String s) {
super(s);
setFont(ZTools.ZLabelFont);
}
}