< prev index next >
src/java.desktop/share/classes/java/beans/MethodDescriptor.java
Print this page
*** 47,69 ****
private List<WeakReference<Class<?>>> params;
private ParameterDescriptor parameterDescriptors[];
/**
! * Constructs a <code>MethodDescriptor</code> from a
! * <code>Method</code>.
*
* @param method The low-level method information.
*/
public MethodDescriptor(Method method) {
this(method, null);
}
/**
! * Constructs a <code>MethodDescriptor</code> from a
! * <code>Method</code> providing descriptive information for each
* of the method's parameters.
*
* @param method The low-level method information.
* @param parameterDescriptors Descriptive information for each of the
* method's parameters.
--- 47,69 ----
private List<WeakReference<Class<?>>> params;
private ParameterDescriptor parameterDescriptors[];
/**
! * Constructs a {@code MethodDescriptor} from a
! * {@code Method}.
*
* @param method The low-level method information.
*/
public MethodDescriptor(Method method) {
this(method, null);
}
/**
! * Constructs a {@code MethodDescriptor} from a
! * {@code Method} providing descriptive information for each
* of the method's parameters.
*
* @param method The low-level method information.
* @param parameterDescriptors Descriptive information for each of the
* method's parameters.
< prev index next >