Label

A displayed label object is known as the Label. Most of the times label is used to demonstrate the significance of the other parts of the GUI. It helps to display the functioning of the next text field. A label is also restricted to a single line of text

Label

A displayed label object is known as the Label. Most of the times label is used to demonstrate the significance of the other parts of the GUI. It helps to display the functioning of the next text field. A label is also restricted to a single line of text

Label

Label

     

A displayed label object is known as the Label. Most of the times label is used to demonstrate the significance of the other parts of the GUI. It helps to display the functioning of the next text field. A label is also restricted to a single line of text as a button. The example below shows the significance of Label.


In this example, we have added two labels in the applet as shown.

 

 

import java.awt.*; 
import java.applet.Applet; 
 
public class MyLabel extends Applet 
  public void init() { 
  add(new Label("label one"))
  add(new Label("label two", Label.RIGHT))
  

Here is the output: 

C:\newprgrm>javac MyLabel.java

C:\newprgrm>appletviewer MyLabel.html

 

Download this example.