FileDocCategorySizeDatePackage
SampleMethod.javaAPI DocExample1750Tue Dec 12 18:58:48 GMT 2000None

SampleMethod

public class SampleMethod extends Object

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

      Polygon p = new Polygon();
      showMethods(p);
   
static voidshowMethods(java.lang.Object o)

      Class c = o.getClass();
      Method[] theMethods = c.getMethods();
      for (int i = 0; i < theMethods.length; i++) {
         String methodString = theMethods[i].getName();
         System.out.println("Name: " + methodString);
         String returnString = theMethods[i].getReturnType().getName();
         System.out.println("   Return Type: " + returnString);
         Class[] parameterTypes = theMethods[i].getParameterTypes();
         System.out.print("   Parameter Types:");
         for (int k = 0; k < parameterTypes.length; k ++) {
            String parameterString = parameterTypes[k].getName();
            System.out.print(" " + parameterString);
            }
         System.out.println();
         }