Class Reflection: show methods : Method « Reflection « Java

Home
Java
1.2D Graphics GUI
2.3D
3.Advanced Graphics
4.Ant
5.Apache Common
6.Chart
7.Class
8.Collections Data Structure
9.Data Type
10.Database SQL JDBC
11.Design Pattern
12.Development Class
13.EJB3
14.Email
15.Event
16.File Input Output
17.Game
18.Generics
19.GWT
20.Hibernate
21.I18N
22.J2EE
23.J2ME
24.JavaFX
25.JDK 6
26.JDK 7
27.JNDI LDAP
28.JPA
29.JSP
30.JSTL
31.Language Basics
32.Network Protocol
33.PDF RTF
34.Reflection
35.Regular Expressions
36.Scripting
37.Security
38.Servlets
39.Spring
40.Swing Components
41.Swing JFC
42.SWT JFace Eclipse
43.Threads
44.Tiny Application
45.Velocity
46.Web Services SOA
47.XML
Java » Reflection » Method 




Class Reflection: show methods
Class Reflection: show methods
        
/* From http://java.sun.com/docs/books/tutorial/index.html */

/*
 * Copyright (c) 1995-1998 Sun Microsystems, Inc. All Rights Reserved.
 
 * Permission to use, copy, modify, and distribute this software and its
 * documentation for NON-COMMERCIAL purposes and without fee is hereby granted
 * provided that this copyright notice appears in all copies. Please refer to
 * the file "copyright.html" for further important copyright and licensing
 * information.
 
 * SUN MAKES NO REPRESENTATIONS OR WARRANTIES ABOUT THE SUITABILITY OF THE
 * SOFTWARE, EITHER EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE IMPLIED
 * WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, OR
 * NON-INFRINGEMENT. SUN SHALL NOT BE LIABLE FOR ANY DAMAGES SUFFERED BY
 * LICENSEE AS A RESULT OF USING, MODIFYING OR DISTRIBUTING THIS SOFTWARE OR ITS
 * DERIVATIVES.
 */

import java.awt.Polygon;
import java.lang.reflect.Method;

public class SampleMethod {

  public static void main(String[] args) {
    Polygon p = new Polygon();
    showMethods(p);
  }

  static void showMethods(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();
    }
  }
}
           
         
    
    
    
    
    
    
    
  














Related examples in the same category
1.Method Reflection
2.Load a method on the fly
3.Demonstrates how to get specific method information
4.Object Reflection: invoke methodsObject Reflection: invoke methods
5.To get the calling method
6.Get the class name in a static method
7.Call a method dynamically (Reflection)
8.Call a class method with 2 arguments
9.Using reflection to show all the methods of a class,
10.Invoke method through Java Reflection APIInvoke method through Java Reflection API
11.Get a given method, and invoke it
12.Show loading a class and finding and calling its Main methodShow loading a class and finding and calling its Main method
13.Demonstrates dynamic usage of methods
14.Demonstration of various method invocation issues
15.An invocation handler that counts the number of calls for all methods in the target class.
16.Method modifiers: isSynthetic(), m.isVarArgs(), m.isBridge()
17.Call private method
18.Get the methods of a class object
19.Invoke a method using Method class
20.The next example calls a class method with 2 arguments:
21.Getting the Methods of a Class Object: By obtaining a list of all declared methods
22.Getting the Methods of a Class Object: By obtaining a list of all public methods, both declared and inherited.
23.Getting the Methods of a Class Object: By obtaining a particular Method object.
24.Get the current method name
25.Get the current method name With JDK1.5
26.Get all declared methods from a class
27.Make methods that have unspecified number of parameters:pass an array of Objects
28.Get all methods including the inherited method. Using the getMethods(), we can only access public methods.
29.Fetches all methods of all access types from the supplied class and super classes
30.Find a Method on the supplied class with the supplied name and no parameters
31.Find a Method on the supplied class with the supplied name and parameter types
32.Checks whether the specified class contains a method matching the specified name.
33.Call a member function to get the value
34.Call a method of an object
35.Call a static method of a class with reflection
36.Returns method with the specified name
37.Find method
38.Invokes a method, masking with a runtime exception all the exceptions.
39.Sorts methods according to their name, number of parameters, and parameter types.
40.This program shows how to invoke methods through reflection
41.Adds all methods (from Class.getMethodCalls) to the list
42.Find method 2
43.Find Declared Methods
44.Get Static Method
45.Search Method
46.Convert method to property name.
47.Get all methods of a class.
48.Method signature
49.Gets a String array of all method calls for the given class
50.Convert the Method to a Java Code String (arguments are replaced by the simple types)
java2s.com  | Contact Us | Privacy Policy
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.