FileDocCategorySizeDatePackage
Thready.javaAPI DocExample501Sat Apr 23 22:35:36 BST 2005None

Thready

public class Thready extends Object

Fields Summary
Constructors Summary
Methods Summary
public static voidmain(java.lang.String[] args)

        Thread foo = new ShowThread("Foo");
		foo.setPriority( Thread.NORM_PRIORITY);
		foo.start();

        Thread bar = new ShowThread("Bar");
		bar.setPriority( Thread.NORM_PRIORITY+1 );
        bar.start();