/*
Create AWT Label Example
This java example shows how to create a label using AWT Label class.
*/
import java.applet.Applet;
import java.awt.Label;
/*
<applet code="CreateLabel" width=200 height=200>
</applet>
*/
public class CreateLabel extends Applet{
public void init(){
/*
* To create a new label use
* Label() constructor of AWT Label class.
*/
Label label1 = new Label();
/*
* To set label text use,
* void setText(String text) method of AWT Label class
*/
label1.setText("My Label 1");
/*
* To create label with the text use
* Label(String text) constructor.
*/
Label label2 = new Label("My Label 2");
/*
* To add label use
* void add(Component c) method.
*/
add(label1);
add(label2);
}
}
Example Output

Bookmark/Search this post with: