equal
deleted
inserted
replaced
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 * |