📄 Update year in copyright line
[jSite.git] / src / main / java / de / todesbaum / util / swing / TLabel.java
index 0393f5c..4fb4766 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * jSite - TLabel.java - Copyright Â© 2006–2012 David Roden
+ * jSite - TLabel.java - Copyright Â© 2006–2019 David Roden
  *
  * This program is free software; you can redistribute it and/or modify
  * it under the terms of the GNU General Public License as published by
@@ -29,40 +29,6 @@ import javax.swing.JLabel;
  */
 public class TLabel extends JLabel {
 
-       public TLabel() {
-               super();
-       }
-
-       public TLabel(int mnemonic, Component labelFor) {
-               super();
-               setDisplayedMnemonic(mnemonic);
-               setLabelFor(labelFor);
-       }
-
-       public TLabel(Icon image) {
-               super(image);
-       }
-
-       public TLabel(Icon image, int mnemonic, Component labelFor) {
-               super(image);
-               setDisplayedMnemonic(mnemonic);
-               setLabelFor(labelFor);
-       }
-
-       public TLabel(Icon image, int horizontalAlignment) {
-               super(image);
-       }
-
-       public TLabel(Icon image, int horizontalAlignment, int mnemonic, Component labelFor) {
-               super(image);
-               setDisplayedMnemonic(mnemonic);
-               setLabelFor(labelFor);
-       }
-
-       public TLabel(String text) {
-               super(text);
-       }
-
        public TLabel(String text, int mnemonic, Component labelFor) {
                super(text);
                setDisplayedMnemonic(mnemonic);
@@ -70,24 +36,4 @@ public class TLabel extends JLabel {
                setAlignmentX(0.0f);
        }
 
-       public TLabel(String text, Icon icon, int horizontalAlignment) {
-               super(text, icon, horizontalAlignment);
-       }
-
-       public TLabel(String text, Icon icon, int horizontalAlignment, int mnemonic, Component labelFor) {
-               super(text, icon, horizontalAlignment);
-               setDisplayedMnemonic(mnemonic);
-               setLabelFor(labelFor);
-       }
-
-       public TLabel(String text, int horizontalAlignment) {
-               super(text, horizontalAlignment);
-       }
-
-       public TLabel(String text, int horizontalAlignment, int mnemonic, Component labelFor) {
-               super(text, horizontalAlignment);
-               setDisplayedMnemonic(mnemonic);
-               setLabelFor(labelFor);
-       }
-
 }