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.

|