5 |
import javax.swing.JButton; |
import javax.swing.JButton; |
6 |
|
|
7 |
public class SmallButton extends JButton { |
public class SmallButton extends JButton { |
8 |
|
|
9 |
public SmallButton() { |
public SmallButton() { |
10 |
setBorder(BorderFactory.createEtchedBorder()); |
setBorder(BorderFactory.createEtchedBorder()); |
11 |
} |
} |
12 |
|
|
13 |
public SmallButton(Action action, String tooltip) { |
public SmallButton(Action action, String tooltip) { |
14 |
this (action); |
this(action); |
15 |
if (tooltip != null) |
setToolTipText(tooltip); |
|
setToolTipText(tooltip); |
|
16 |
} |
} |
17 |
|
|
18 |
public SmallButton(Action action) { |
public SmallButton(Action action) { |