Skip to content
This repository has been archived by the owner on Dec 5, 2024. It is now read-only.
mlabuda edited this page Feb 13, 2014 · 3 revisions

API / Abstract

  • Label / AbstractLabel

Implementation(s)

  • DefaultLabel

Usage

DefaultLabel

Look up a label with text "Name:"

Label label = new DefaultLabel("Name:");

Check if label is visible

boolean isVisible = label.isVisible(); 

Get text of label with index 0

Label label = new DefaultLabel(0);
String text = label.getText();
Clone this wiki locally