Searched refs:createTargetHook (Results 1 - 2 of 2) sorted by relevance

/openjdk7/jdk/src/share/classes/java/lang/invoke/
H A DConstantCallSite.java50 * During construction of the call site, the {@code createTargetHook} is invoked to
52 * {@code (MethodHandle) createTargetHook.invoke(this)}.
73 * @param createTargetHook a method handle to invoke (on the call site) to produce the call site's target
80 protected ConstantCallSite(MethodType targetType, MethodHandle createTargetHook) throws Throwable { argument
81 super(targetType, createTargetHook);
H A DCallSite.java122 * @param createTargetHook a hook which will bind the call site to the target method handle
130 CallSite(MethodType targetType, MethodHandle createTargetHook) throws Throwable { argument
133 MethodHandle boundTarget = (MethodHandle) createTargetHook.invokeWithArguments(selfCCS);

Completed in 23 milliseconds