stubs for TTableWidget
[fanfix.git] / src / jexer / TLabel.java
index f33a8d75f51ac7f6045f3dbc6b8d97934157af2d..75623ffc11ad8ecee95e062d4d0b506a4f63afca 100644 (file)
@@ -222,6 +222,24 @@ public class TLabel extends TWidget {
         mnemonic = new MnemonicString(label);
     }
 
+    /**
+     * Get the label color.
+     *
+     * @param return the ColorTheme key color to use for foreground text
+     */
+    public String getColorKey() {
+        return colorKey;
+    }
+
+    /**
+     * Set the label color.
+     *
+     * @param colorKey ColorTheme key color to use for foreground text
+     */
+    public void setColorKey(final String colorKey) {
+        this.colorKey = colorKey;
+    }
+
     /**
      * Act as though the mnemonic shortcut was pressed.
      */