Searched refs:parameterTypes (Results 1 – 3 of 3) sorted by relevance
232 java.lang.Class[] parameterTypes = constructor.getParameterTypes(); in hasValidConstructor() local233 if (parameterTypes.length == 0 || in hasValidConstructor()234 (parameterTypes.length == 1 && parameterTypes[0] == String.class)) { in hasValidConstructor()
134 private static Method getMethod(Class<?> owner, String name, Class<?>... parameterTypes) { in getMethod() argument136 return owner == null ? null : owner.getMethod(name, parameterTypes); in getMethod()
300 private static Method findMethod(Object instance, String name, Class<?>... parameterTypes) in findMethod() argument304 Method method = clazz.getDeclaredMethod(name, parameterTypes); in findMethod()318 Arrays.asList(parameterTypes) + " not found in " + instance.getClass()); in findMethod()