FileDocCategorySizeDatePackage
ObjectIsGod.javaAPI DocExample1317Sun Dec 14 22:47:36 GMT 2003oreilly.hcj.review

ObjectIsGod

public class ObjectIsGod extends Object
Demonstrates that all classes descend from the type java.lang.Object.
author
Robert Simmons jr. (kraythe)
version
$Revision: 1.3 $

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

param
args Command line arguments.

		System.out.println(SomeClass.class + " --|> " + SomeClass.class.getSuperclass());
		System.out.println(SomeOtherClass.class + " --|> "
		                   + SomeOtherClass.class.getSuperclass());