Home Java Example Java Awt AWT Components



AWT Components
Posted on: March 13, 2008 at 12:00 AM
The class component is extended by all the AWT components. More of the codes can be put to this class to design lot of AWT components. Most of the AWT components shown below directly extend Component like Button, Canvas, Label etc.

AWT Components

     

The class component is extended by all the AWT components. More of the codes can be put to this class to design lot of AWT components. Most of the AWT components shown below directly extend Component like Button, Canvas, Label etc. 

Buttons

As shown in the example below, a button is represented by a single label. That is the label shown in the example can be pushed with a click of a mouse.

 

 

import java.awt.*; 
import java.applet.Applet; 
 
public class MyButton extends Applet 
  public void init() { 
  Button button = new Button("SUBMIT")
  add(button)
  

Here is the HTML code:

<HTML>
<HEAD>
</HEAD>
<BODY>
<APPLET ALIGN="CENTER" CODE="MyButton" WIDTH="400" HEIGHT="200"></APPLET>
</BODY>
</HTML>

Here is the Output:

C:\newprgrm>javac MyButton.java

C:\newprgrm>appletviewer MyButton.html

C:\newprgrm>

 

Download this example.

Related Tags for AWT Components:
cdesigncomclassbuttonmousecomponentscanvaslabelclickcomponentawtclithisbuttonslikeshowexamplepushwithtoexamextendsingleshextcodesesignitdescanliputuseinasmntoscaosclesextendeddirendallhowctlxaxampsrectdirectatkisirhallmplprecodcodereprxtwtvattssthshobelostababelhatesietcesietcpleplprmostndodeonomo


More Tutorials from this section

Ask Questions?    Discuss: AWT Components   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.