Lines Matching refs:param
53 * @param method The low-level method information.
65 * @param method The low-level method information.
66 * @param parameterDescriptors Descriptive information for each of the
124 private synchronized void setParams(Class[] param) {
125 if (param == null) {
128 paramNames = new String[param.length];
129 params = new ArrayList(param.length);
130 for (int i = 0; i < param.length; i++) {
131 paramNames[i] = param[i].getName();
132 params.add(new WeakReference(param[i]));
171 * @param x The first (lower priority) MethodDescriptor
172 * @param y The second (higher priority) MethodDescriptor