jdk/src/java.base/share/classes/java/lang/invoke/package-info.java
changeset 36934 590fc47a0aeb
parent 25859 3317bb8137f4
child 42103 8e1fe4345fd7
equal deleted inserted replaced
36933:3e6453e2d833 36934:590fc47a0aeb
     1 /*
     1 /*
     2  * Copyright (c) 2008, 2013, Oracle and/or its affiliates. All rights reserved.
     2  * Copyright (c) 2008, 2015, Oracle and/or its affiliates. All rights reserved.
     3  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
     3  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
     4  *
     4  *
     5  * This code is free software; you can redistribute it and/or modify it
     5  * This code is free software; you can redistribute it and/or modify it
     6  * under the terms of the GNU General Public License version 2 only, as
     6  * under the terms of the GNU General Public License version 2 only, as
     7  * published by the Free Software Foundation.  Oracle designates this
     7  * published by the Free Software Foundation.  Oracle designates this
    30  * <p>
    30  * <p>
    31  * As described in the Java Virtual Machine Specification,
    31  * As described in the Java Virtual Machine Specification,
    32  * certain types in this package have special relations to dynamic
    32  * certain types in this package have special relations to dynamic
    33  * language support in the virtual machine:
    33  * language support in the virtual machine:
    34  * <ul>
    34  * <ul>
    35  * <li>The class {@link java.lang.invoke.MethodHandle MethodHandle} contains
    35  * <li>The classes {@link java.lang.invoke.MethodHandle MethodHandle}
       
    36  * {@link java.lang.invoke.VarHandle VarHandle} contain
    36  * <a href="MethodHandle.html#sigpoly">signature polymorphic methods</a>
    37  * <a href="MethodHandle.html#sigpoly">signature polymorphic methods</a>
    37  * which can be linked regardless of their type descriptor.
    38  * which can be linked regardless of their type descriptor.
    38  * Normally, method linkage requires exact matching of type descriptors.
    39  * Normally, method linkage requires exact matching of type descriptors.
    39  * </li>
    40  * </li>
    40  *
    41  *