package ql.gui; import javax.swing.JLabel; /** * @author orosu */ public class Label extends JLabel { private static final long serialVersionUID = 1L; public Label(String text) { super(text); } }