0393f5ce066a54d63b62b6c0c8a97fcd4f05bcc7
[jSite.git] / src / main / java / de / todesbaum / util / swing / TLabel.java
1 /*
2  * jSite - TLabel.java - Copyright © 2006–2012 David Roden
3  *
4  * This program is free software; you can redistribute it and/or modify
5  * it under the terms of the GNU General Public License as published by
6  * the Free Software Foundation; either version 2 of the License, or
7  * (at your option) any later version.
8  *
9  * This program is distributed in the hope that it will be useful,
10  * but WITHOUT ANY WARRANTY; without even the implied warranty of
11  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12  * GNU General Public License for more details.
13  *
14  * You should have received a copy of the GNU General Public License
15  * along with this program; if not, write to the Free Software
16  * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
17  */
18
19 package de.todesbaum.util.swing;
20
21 import java.awt.Component;
22
23 import javax.swing.Icon;
24 import javax.swing.JLabel;
25
26 /**
27  * @author David Roden <droden@gmail.com>
28  * @version $Id$
29  */
30 public class TLabel extends JLabel {
31
32         public TLabel() {
33                 super();
34         }
35
36         public TLabel(int mnemonic, Component labelFor) {
37                 super();
38                 setDisplayedMnemonic(mnemonic);
39                 setLabelFor(labelFor);
40         }
41
42         public TLabel(Icon image) {
43                 super(image);
44         }
45
46         public TLabel(Icon image, int mnemonic, Component labelFor) {
47                 super(image);
48                 setDisplayedMnemonic(mnemonic);
49                 setLabelFor(labelFor);
50         }
51
52         public TLabel(Icon image, int horizontalAlignment) {
53                 super(image);
54         }
55
56         public TLabel(Icon image, int horizontalAlignment, int mnemonic, Component labelFor) {
57                 super(image);
58                 setDisplayedMnemonic(mnemonic);
59                 setLabelFor(labelFor);
60         }
61
62         public TLabel(String text) {
63                 super(text);
64         }
65
66         public TLabel(String text, int mnemonic, Component labelFor) {
67                 super(text);
68                 setDisplayedMnemonic(mnemonic);
69                 setLabelFor(labelFor);
70                 setAlignmentX(0.0f);
71         }
72
73         public TLabel(String text, Icon icon, int horizontalAlignment) {
74                 super(text, icon, horizontalAlignment);
75         }
76
77         public TLabel(String text, Icon icon, int horizontalAlignment, int mnemonic, Component labelFor) {
78                 super(text, icon, horizontalAlignment);
79                 setDisplayedMnemonic(mnemonic);
80                 setLabelFor(labelFor);
81         }
82
83         public TLabel(String text, int horizontalAlignment) {
84                 super(text, horizontalAlignment);
85         }
86
87         public TLabel(String text, int horizontalAlignment, int mnemonic, Component labelFor) {
88                 super(text, horizontalAlignment);
89                 setDisplayedMnemonic(mnemonic);
90                 setLabelFor(labelFor);
91         }
92
93 }