JAL-1807 update
[jalviewjs.git] / src / awt2swing / Button.java
1 package awt2swing;
2
3 import javax.swing.JButton;
4
5
6 public class Button extends JButton {
7
8         public Button() {
9                 super();
10         }
11
12         public Button(String text) {
13                 super(text);
14         }
15
16 }