FileDocCategorySizeDatePackage
OurCompleteApplet.javaAPI DocExample1674Thu Feb 04 16:10:34 GMT 1999None

OurCompleteApplet

public class OurCompleteApplet extends Applet implements Runnable

Fields Summary
Constructors Summary
Methods Summary
public voidinit()

        Thread th = new Thread(this);
        th.start();
    
public voidrun()

        for (int I = 0; I < 100; I++) {
            System.out.println("Hello, from another thread");
        }