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