Skip to content
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