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

/openjdk7/jdk/src/share/classes/java/lang/invoke/
H A DConstantCallSite.java29 * A {@code ConstantCallSite} is a {@link CallSite} whose target is permanent, and can never be changed.
30 * An {@code invokedynamic} instruction linked to a {@code ConstantCallSite} is permanently
34 public class ConstantCallSite extends CallSite { class in inherits:CallSite
42 public ConstantCallSite(MethodHandle target) { method in class:ConstantCallSite
55 * since the target must be fixed before the {@code ConstantCallSite} constructor returns.
65 * While the hook is being called, the new {@code ConstantCallSite}
80 protected ConstantCallSite(MethodType targetType, MethodHandle createTargetHook) throws Throwable { method in class:ConstantCallSite
87 * like a {@code final} field of the {@code ConstantCallSite}.
92 * @throws IllegalStateException if the {@code ConstantCallSite} constructor has not completed
114 * @throws IllegalStateException if the {@code ConstantCallSite} constructo
[all...]

Completed in 46 milliseconds