Searched refs:constructorParameter (Results 1 – 1 of 1) sorted by relevance
1065 public Object newInstance(Object constructorParameter) throws NoSuchAlgorithmException { in newInstance() argument1081 if (constructorParameter == null) { in newInstance()1084 return newInstanceWithParameter(constructorParameter, in newInstance()1085 constructorParameter.getClass()); in newInstance()1091 if (constructorParameter == null) { in newInstance()1101 if (!expectedClass.isAssignableFrom(constructorParameter.getClass())) { in newInstance()1104 + constructorParameter.getClass().getName()); in newInstance()1106 return newInstanceWithParameter(constructorParameter, expectedClass); in newInstance()1109 private Object newInstanceWithParameter(Object constructorParameter, in newInstanceWithParameter() argument1113 Object[] initargs = { constructorParameter }; in newInstanceWithParameter()