FileDocCategorySizeDatePackage
ObjectDeclaredMethods.javaAPI DocExample1091Sun Dec 14 22:47:42 GMT 2003oreilly.hcj.reflection

ObjectDeclaredMethods

public class ObjectDeclaredMethods extends Object
Prints out the declared methods on java.lang.Object.
author
Robert Simmons jr. (kraythe)
version
$Revision: 1.3 $

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

param
args Command line arguments.

		final Method[] methods = Object.class.getDeclaredMethods();
		for (int idx = 0; idx < methods.length; idx++) {
			System.out.println(methods[idx]);
		}