1 |
package skrueger.swing; |
2 |
|
3 |
import javax.swing.Action; |
4 |
import javax.swing.BorderFactory; |
5 |
import javax.swing.JButton; |
6 |
|
7 |
public class SmallButton extends JButton { |
8 |
|
9 |
public SmallButton() { |
10 |
setBorder(BorderFactory.createEtchedBorder()); |
11 |
} |
12 |
|
13 |
public SmallButton(Action action, String tooltip) { |
14 |
this(action); |
15 |
setToolTipText(tooltip); |
16 |
} |
17 |
|
18 |
|
19 |
public SmallButton(String label) { |
20 |
this(); |
21 |
setText(label); |
22 |
} |
23 |
|
24 |
|
25 |
|
26 |
public SmallButton(String label, String toolTip) { |
27 |
this(); |
28 |
setText(label); |
29 |
setToolTipText(toolTip); |
30 |
} |
31 |
|
32 |
public SmallButton(Action action) { |
33 |
this(); |
34 |
setAction(action); |
35 |
} |
36 |
|
37 |
} |