/[schmitzm]/branches/2.2.x/src/skrueger/swing/SmallButton.java
ViewVC logotype

Contents of /branches/2.2.x/src/skrueger/swing/SmallButton.java

Parent Directory Parent Directory | Revision Log Revision Log


Revision 897 - (show annotations)
Mon Jun 7 14:14:39 2010 UTC (14 years, 8 months ago) by alfonx
File MIME type: text/plain
File size: 679 byte(s)
Das ist 2.2-SNAPSHOT

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.createCompoundBorder(BorderFactory
11 .createEtchedBorder(), BorderFactory.createEmptyBorder(0, 1, 0,
12 3)));
13 }
14
15 public SmallButton(Action action, String tooltip) {
16 this(action);
17 setToolTipText(tooltip);
18 }
19
20 public SmallButton(String label) {
21 this();
22 setText(label);
23 }
24
25 public SmallButton(String label, String toolTip) {
26 this();
27 setText(label);
28 setToolTipText(toolTip);
29 }
30
31 public SmallButton(Action action) {
32 this();
33 setAction(action);
34 }
35
36 }

Properties

Name Value
svn:eol-style native
svn:keywords Id URL
svn:mime-type text/plain

[email protected]
ViewVC Help
Powered by ViewVC 1.1.26