class xlock extends java.applet.Applet
{
int isapp=0;
public void init(){
Frame theAppWindow = new Frame("FrameTest");
xlockFrame theApplet = new xlockFrame();
theApplet.init();
theApplet.start();
theAppWindow.add("Center",theApplet);
theAppWindow.resize(350,400);
theAppWindow.show();
}