X-Git-Url: http://git.nikiroo.be/?a=blobdiff_plain;f=src%2Fjexer%2FTLabel.java;h=fb00ac47599a5379127f12a41edc915d5b341f3c;hb=3649b9210ea425f398ba8c24f9509669cf72aa96;hp=d56be67f7d3815a42dc25c6f43c7e9a416db9cb8;hpb=d502a0e90eacad7ec676b0abf4686db553b794b1;p=fanfix.git diff --git a/src/jexer/TLabel.java b/src/jexer/TLabel.java index d56be67..fb00ac4 100644 --- a/src/jexer/TLabel.java +++ b/src/jexer/TLabel.java @@ -1,4 +1,4 @@ -/** +/* * Jexer - Java Text User Interface * * License: LGPLv3 or later @@ -40,24 +40,24 @@ public final class TLabel extends TWidget { /** * Label text. */ - private String text = ""; + private String label = ""; /** * Get label text. * * @return label text */ - public String getText() { - return text; + public String getLabel() { + return label; } /** * Set label text. * - * @param text new label text + * @param label new label text */ - public void setText(final String text) { - this.text = text; + public void setLabel(final String label) { + this.label = label; } /** @@ -92,13 +92,9 @@ public final class TLabel extends TWidget { final int y, final String colorKey) { // Set parent and window - super(parent, false); + super(parent, false, x, y, text.length(), 1); - this.text = text; - setX(x); - setY(y); - setHeight(1); - setWidth(text.length()); + this.label = text; this.colorKey = colorKey; } @@ -112,7 +108,7 @@ public final class TLabel extends TWidget { CellAttributes background = getWindow().getBackground(); color.setBackColor(background.getBackColor()); - getScreen().putStrXY(0, 0, text, color); + getScreen().putStringXY(0, 0, label, color); } }