Technical Support
Discussion Forum
Online Training
Read About Java
Java In-Depth
Product Discounts
Membership Information

Java Cup Logo

JDC Home Page


Working Applet
Help and Hints
Source Code
Table of Contents
Online Training
shadowSearchFAQFeedback

Solution

Download BorderLayoutTest source code.

HTML Interface to Applet


<APPLET CODEBASE="/applets/magelang/AWT-Training/classes/" CODE="BorderLayoutTest.class" WIDTH=300 HEIGHT=150 ALIGN=CENTER></APPLET>

Java Code


import java.awt.*;

public class BorderLayoutTest extends java.applet.Applet {

    public void init() {
        setLayout(new BorderLayout());

        add("North",  new Button("North"));
        add("South",  new Button("South"));
        add("West",   new Button("West"));
        add("East",   new Button("East"));
        add("Center", new Button("Center"));
    }
}