Label class represents a simple label element for displaying text.
It provides a way to create and customize labels in a DOM structure.
See also :
public void Label(String text)
Label with the specified text content.
text
The text content of the label.
public static Label create(String text)
Label with the specified text content.
text
The text content of the label.
A new Label instance.
public Label setText(String text)
text
The text content to set.
This Label instance for method chaining.