import java.awt.*;
import java.applet.*;

public class SampleFrame1
extends      Applet
{
    static final int x      = 100;
    static final int y      = 100;
    static final int width  = 300;
    static final int height = 300;

    Frame   frame;

    public void init() {
	frame   = new Frame();
        frame.setResizable(true);	// Default
        frame.setTitle("SampleFrame1 Applet");
        frame.reshape( x,y, width,height );
	frame.show();
    }
}

