public void setLabelFont(final Font font) { if (GUtils.equals(_labelFont, font)) { return; } _labelFont = font; clearTexture(); }
public void setLabel(final String label) { if (GUtils.equals(_label, label)) { return; } _label = label; clearTexture(); }
public void setLabelShadowColor(final Color labelShadowColor) { if (GUtils.equals(_labelShadowColor, labelShadowColor)) { return; } _labelShadowColor = labelShadowColor; clearTexture(); }
public void setImage(final BufferedImage image) { if (GUtils.equals(_image, image)) { return; } _image = image; clearTexture(); }