Searched defs:nptype (Results 1 - 1 of 1) sorted by relevance

/openjdk7/jdk/src/share/classes/java/lang/invoke/
H A DMethodType.java338 * @param nptype a new parameter type to replace the old one with
341 * @throws IllegalArgumentException if {@code nptype} is {@code void.class}
342 * @throws NullPointerException if {@code nptype} is null
344 public MethodType changeParameterType(int num, Class<?> nptype) { argument
345 if (parameterType(num) == nptype) return this;
346 checkPtype(nptype);
348 nptypes[num] = nptype;

Completed in 64 milliseconds