package awt2swing; import javax.swing.JButton; public class Button extends JButton { public Button() { super(); } public Button(String text) { super(text); } }