ExtJLabel.java 222 Bytes Raw Blame History Permalink 1 2 3 4 5 6 7 8 9 10 11 12 13 package org.emercit.components; import javax.swing.JLabel; public class ExtJLabel extends JLabel { public ExtJLabel(String title) { this.setBounds(0, 0, 70, 50); this.setVisible(true); this.setText(title); } }