jdk/src/java.base/share/classes/java/lang/invoke/ConstantCallSite.java
changeset 44255 515cf13d7791
parent 25859 3317bb8137f4
equal deleted inserted replaced
44254:123a06da53d0 44255:515cf13d7791
    28 /**
    28 /**
    29  * A {@code ConstantCallSite} is a {@link CallSite} whose target is permanent, and can never be changed.
    29  * 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
    30  * An {@code invokedynamic} instruction linked to a {@code ConstantCallSite} is permanently
    31  * bound to the call site's target.
    31  * bound to the call site's target.
    32  * @author John Rose, JSR 292 EG
    32  * @author John Rose, JSR 292 EG
       
    33  * @since 1.7
    33  */
    34  */
    34 public class ConstantCallSite extends CallSite {
    35 public class ConstantCallSite extends CallSite {
    35     private final boolean isFrozen;
    36     private final boolean isFrozen;
    36 
    37 
    37     /**
    38     /**