Where Am I? Class Hierarchy (JDK) All Classes (JDK) All Fields and Methods (JDK)

Class java.beans.MethodDescriptor

java.lang.Object
   |
   +----java.beans.FeatureDescriptor
           |
           +----java.beans.MethodDescriptor

public class MethodDescriptor
extends FeatureDescriptor

A MethodDescriptor describes a particular method that a Java Bean supports for external access from other components.


Constructor Index

MethodDescriptor(Method)
MethodDescriptor(Method, ParameterDescriptor[])

Method Index

getMethod()
getParameterDescriptors()

Constructors

MethodDescriptor
 public MethodDescriptor(Method method)
Parameters:
method - The low-level method information.
MethodDescriptor
 public MethodDescriptor(Method method,
                         ParameterDescriptor parameterDescriptors[])
Parameters:
method - The low-level method information.
parameterDescriptors - Descriptive information for each of the method's parameters.

Methods

getMethod
 public Method getMethod()
Returns:
The low-level description of the method
getParameterDescriptors
 public ParameterDescriptor[] getParameterDescriptors()
Returns:
The locale-independent names of the parameters. May return a null array if the parameter names aren't known.

Where Am I? Class Hierarchy (JDK) All Classes (JDK) All Fields and Methods (JDK)