Label
Posted on: March 13, 2008 at 12:00 AM
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 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.

 

 

Related Tags for Label:
cguiresttextuitimefunctionobjectbuttonfuniohelpseddisplaylabelfieldlineshowiftexieexampleuncctetoexamsingleldwsshextesignitrestrictstrictlscandemolispluseimartceinnopartasmnextplayparpstroscaosjispesemfuncmehowobjratepartsxaxampssignificancespsoatkisimemplartsarstrrtrtsxtttssrithshobelostababeldisplsojeicaicapleplmostono


More Tutorials from this section

Ask Questions?    Discuss: Label   View All Comments

Post your Comment


Your Name (*) :
Your Email :
Subject (*):
Your Comment (*):
  Reload Image
 
 

Ask Questions?

If you are facing any programming issue, such as compilation errors or not able to find the code you are looking for.

Ask your questions, our development team will try to give answers to your questions.