FileDocCategorySizeDatePackage
IntrSelf.javaAPI DocExample2672Sun Feb 08 21:34:06 GMT 2004None

IntrSelf

public class IntrSelf extends Object

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

		System.out.println("Starting");
		try {
			Thread.currentThread().interrupt();
		} catch (Throwable x) {
			System.out.println(x);
			return;
		}
		System.out.println("Interrupted Status = " +
			Thread.currentThread().isInterrupted());
		System.out.println("Done");