-
Notifications
You must be signed in to change notification settings - Fork 43
Label
mlabuda edited this page Feb 13, 2014
·
3 revisions
- Label / AbstractLabel
- 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();