Searched refs:parameterTypes (Results 1 – 3 of 3) sorted by relevance
206 java.lang.Class[] parameterTypes = constructor.getParameterTypes(); in hasValidConstructor() local207 if (parameterTypes.length == 0 || in hasValidConstructor()208 (parameterTypes.length == 1 && parameterTypes[0] == String.class)) { in hasValidConstructor()
239 private static Method getMethod(Class<?> owner, String name, Class<?>... parameterTypes) { in getMethod() argument241 return owner == null ? null : owner.getMethod(name, parameterTypes); in getMethod()
416 private static Method findMethod(Object instance, String name, Class<?>... parameterTypes) in findMethod() argument420 Method method = clazz.getDeclaredMethod(name, parameterTypes); in findMethod()434 Arrays.asList(parameterTypes) + " not found in " + instance.getClass()); in findMethod()