jdk/src/java.base/share/classes/jdk/internal/misc/JavaLangAccess.java
author plevart
Mon, 11 Apr 2016 10:55:03 +0200
changeset 36972 27147cde3256
parent 36511 9d0388c6b336
child 37363 329dba26ffd2
permissions -rw-r--r--
8152115: (proxy) Examine performance of dynamic proxy creation Summary: redesign caching of dynamic Proxy classes Reviewed-by: mchung
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
     1
/*
15510
898d924a7efd 8004698: Implement Core Reflection for Type Annotations
jfranck
parents: 14676
diff changeset
     2
 * Copyright (c) 2003, 2013, Oracle and/or its affiliates. All rights reserved.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
     3
 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
90ce3da70b43 Initial load
duke
parents:
diff changeset
     4
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
     5
 * This code is free software; you can redistribute it and/or modify it
90ce3da70b43 Initial load
duke
parents:
diff changeset
     6
 * under the terms of the GNU General Public License version 2 only, as
5506
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 2947
diff changeset
     7
 * published by the Free Software Foundation.  Oracle designates this
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
     8
 * particular file as subject to the "Classpath" exception as provided
5506
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 2947
diff changeset
     9
 * by Oracle in the LICENSE file that accompanied this code.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    10
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    11
 * This code is distributed in the hope that it will be useful, but WITHOUT
90ce3da70b43 Initial load
duke
parents:
diff changeset
    12
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
90ce3da70b43 Initial load
duke
parents:
diff changeset
    13
 * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
90ce3da70b43 Initial load
duke
parents:
diff changeset
    14
 * version 2 for more details (a copy is included in the LICENSE file that
90ce3da70b43 Initial load
duke
parents:
diff changeset
    15
 * accompanied this code).
90ce3da70b43 Initial load
duke
parents:
diff changeset
    16
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    17
 * You should have received a copy of the GNU General Public License version
90ce3da70b43 Initial load
duke
parents:
diff changeset
    18
 * 2 along with this work; if not, write to the Free Software Foundation,
90ce3da70b43 Initial load
duke
parents:
diff changeset
    19
 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    20
 *
5506
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 2947
diff changeset
    21
 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 2947
diff changeset
    22
 * or visit www.oracle.com if you need additional information or have any
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 2947
diff changeset
    23
 * questions.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    24
 */
90ce3da70b43 Initial load
duke
parents:
diff changeset
    25
32834
e1dca5fe4de3 8137056: Move SharedSecrets and interface friends out of sun.misc
chegar
parents: 30655
diff changeset
    26
package jdk.internal.misc;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    27
36511
9d0388c6b336 8142968: Module System implementation
alanb
parents: 35707
diff changeset
    28
import java.io.IOException;
14676
985410ec95e3 7154390: Add support for repeating annotations in j.l.r.AnnotatedElement
jfranck
parents: 14342
diff changeset
    29
import java.lang.annotation.Annotation;
15510
898d924a7efd 8004698: Implement Core Reflection for Type Annotations
jfranck
parents: 14676
diff changeset
    30
import java.lang.reflect.Executable;
36511
9d0388c6b336 8142968: Module System implementation
alanb
parents: 35707
diff changeset
    31
import java.lang.reflect.Layer;
9d0388c6b336 8142968: Module System implementation
alanb
parents: 35707
diff changeset
    32
import java.lang.reflect.Module;
9d0388c6b336 8142968: Module System implementation
alanb
parents: 35707
diff changeset
    33
import java.net.URL;
20805
ae41216325dd 8013739: Better LDAP resource management
weijun
parents: 17426
diff changeset
    34
import java.security.AccessControlContext;
21358
d41ff832d4f6 8027170: Annotations declared on super-super-class should be overridden by super-class.
alundblad
parents: 20831
diff changeset
    35
import java.util.Map;
36972
27147cde3256 8152115: (proxy) Examine performance of dynamic proxy creation
plevart
parents: 36511
diff changeset
    36
import java.util.concurrent.ConcurrentHashMap;
36511
9d0388c6b336 8142968: Module System implementation
alanb
parents: 35707
diff changeset
    37
import java.util.stream.Stream;
20805
ae41216325dd 8013739: Better LDAP resource management
weijun
parents: 17426
diff changeset
    38
36511
9d0388c6b336 8142968: Module System implementation
alanb
parents: 35707
diff changeset
    39
import jdk.internal.module.ServicesCatalog;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    40
import sun.reflect.ConstantPool;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    41
import sun.reflect.annotation.AnnotationType;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    42
import sun.nio.ch.Interruptible;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    43
90ce3da70b43 Initial load
duke
parents:
diff changeset
    44
public interface JavaLangAccess {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    45
    /** Return the constant pool for a class. */
11117
b6e68b1344d4 7116404: Miscellaneous warnings (java.rmi.**, serialization, some core classes)
alanb
parents: 5506
diff changeset
    46
    ConstantPool getConstantPool(Class<?> klass);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    47
90ce3da70b43 Initial load
duke
parents:
diff changeset
    48
    /**
18827
ecbd9c8bef12 7122142: (ann) Race condition between isAnnotationPresent and getAnnotations
plevart
parents: 17426
diff changeset
    49
     * Compare-And-Swap the AnnotationType instance corresponding to this class.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    50
     * (This method only applies to annotation types.)
90ce3da70b43 Initial load
duke
parents:
diff changeset
    51
     */
18827
ecbd9c8bef12 7122142: (ann) Race condition between isAnnotationPresent and getAnnotations
plevart
parents: 17426
diff changeset
    52
    boolean casAnnotationType(Class<?> klass, AnnotationType oldType, AnnotationType newType);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    53
90ce3da70b43 Initial load
duke
parents:
diff changeset
    54
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
    55
     * Get the AnnotationType instance corresponding to this class.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    56
     * (This method only applies to annotation types.)
90ce3da70b43 Initial load
duke
parents:
diff changeset
    57
     */
11117
b6e68b1344d4 7116404: Miscellaneous warnings (java.rmi.**, serialization, some core classes)
alanb
parents: 5506
diff changeset
    58
    AnnotationType getAnnotationType(Class<?> klass);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    59
90ce3da70b43 Initial load
duke
parents:
diff changeset
    60
    /**
21358
d41ff832d4f6 8027170: Annotations declared on super-super-class should be overridden by super-class.
alundblad
parents: 20831
diff changeset
    61
     * Get the declared annotations for a given class, indexed by their types.
d41ff832d4f6 8027170: Annotations declared on super-super-class should be overridden by super-class.
alundblad
parents: 20831
diff changeset
    62
     */
d41ff832d4f6 8027170: Annotations declared on super-super-class should be overridden by super-class.
alundblad
parents: 20831
diff changeset
    63
    Map<Class<? extends Annotation>, Annotation> getDeclaredAnnotationMap(Class<?> klass);
d41ff832d4f6 8027170: Annotations declared on super-super-class should be overridden by super-class.
alundblad
parents: 20831
diff changeset
    64
d41ff832d4f6 8027170: Annotations declared on super-super-class should be overridden by super-class.
alundblad
parents: 20831
diff changeset
    65
    /**
15510
898d924a7efd 8004698: Implement Core Reflection for Type Annotations
jfranck
parents: 14676
diff changeset
    66
     * Get the array of bytes that is the class-file representation
18827
ecbd9c8bef12 7122142: (ann) Race condition between isAnnotationPresent and getAnnotations
plevart
parents: 17426
diff changeset
    67
     * of this Class' annotations.
ecbd9c8bef12 7122142: (ann) Race condition between isAnnotationPresent and getAnnotations
plevart
parents: 17426
diff changeset
    68
     */
ecbd9c8bef12 7122142: (ann) Race condition between isAnnotationPresent and getAnnotations
plevart
parents: 17426
diff changeset
    69
    byte[] getRawClassAnnotations(Class<?> klass);
ecbd9c8bef12 7122142: (ann) Race condition between isAnnotationPresent and getAnnotations
plevart
parents: 17426
diff changeset
    70
ecbd9c8bef12 7122142: (ann) Race condition between isAnnotationPresent and getAnnotations
plevart
parents: 17426
diff changeset
    71
    /**
ecbd9c8bef12 7122142: (ann) Race condition between isAnnotationPresent and getAnnotations
plevart
parents: 17426
diff changeset
    72
     * Get the array of bytes that is the class-file representation
15510
898d924a7efd 8004698: Implement Core Reflection for Type Annotations
jfranck
parents: 14676
diff changeset
    73
     * of this Class' type annotations.
898d924a7efd 8004698: Implement Core Reflection for Type Annotations
jfranck
parents: 14676
diff changeset
    74
     */
898d924a7efd 8004698: Implement Core Reflection for Type Annotations
jfranck
parents: 14676
diff changeset
    75
    byte[] getRawClassTypeAnnotations(Class<?> klass);
898d924a7efd 8004698: Implement Core Reflection for Type Annotations
jfranck
parents: 14676
diff changeset
    76
898d924a7efd 8004698: Implement Core Reflection for Type Annotations
jfranck
parents: 14676
diff changeset
    77
    /**
898d924a7efd 8004698: Implement Core Reflection for Type Annotations
jfranck
parents: 14676
diff changeset
    78
     * Get the array of bytes that is the class-file representation
898d924a7efd 8004698: Implement Core Reflection for Type Annotations
jfranck
parents: 14676
diff changeset
    79
     * of this Executable's type annotations.
898d924a7efd 8004698: Implement Core Reflection for Type Annotations
jfranck
parents: 14676
diff changeset
    80
     */
898d924a7efd 8004698: Implement Core Reflection for Type Annotations
jfranck
parents: 14676
diff changeset
    81
    byte[] getRawExecutableTypeAnnotations(Executable executable);
898d924a7efd 8004698: Implement Core Reflection for Type Annotations
jfranck
parents: 14676
diff changeset
    82
898d924a7efd 8004698: Implement Core Reflection for Type Annotations
jfranck
parents: 14676
diff changeset
    83
    /**
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    84
     * Returns the elements of an enum class or null if the
90ce3da70b43 Initial load
duke
parents:
diff changeset
    85
     * Class object does not represent an enum type;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    86
     * the result is uncloned, cached, and shared by all callers.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    87
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
    88
    <E extends Enum<E>> E[] getEnumConstantsShared(Class<E> klass);
90ce3da70b43 Initial load
duke
parents:
diff changeset
    89
90ce3da70b43 Initial load
duke
parents:
diff changeset
    90
    /** Set thread's blocker field. */
90ce3da70b43 Initial load
duke
parents:
diff changeset
    91
    void blockedOn(Thread t, Interruptible b);
2277
445a331b4a8b 6810254: Lazily instantiate the shared secret access objects
mchung
parents: 2
diff changeset
    92
2703
acd4d6a53e3e 6829503: addShutdownHook fails if called after shutdown has commenced.
mchung
parents: 2277
diff changeset
    93
    /**
acd4d6a53e3e 6829503: addShutdownHook fails if called after shutdown has commenced.
mchung
parents: 2277
diff changeset
    94
     * Registers a shutdown hook.
acd4d6a53e3e 6829503: addShutdownHook fails if called after shutdown has commenced.
mchung
parents: 2277
diff changeset
    95
     *
acd4d6a53e3e 6829503: addShutdownHook fails if called after shutdown has commenced.
mchung
parents: 2277
diff changeset
    96
     * It is expected that this method with registerShutdownInProgress=true
acd4d6a53e3e 6829503: addShutdownHook fails if called after shutdown has commenced.
mchung
parents: 2277
diff changeset
    97
     * is only used to register DeleteOnExitHook since the first file
acd4d6a53e3e 6829503: addShutdownHook fails if called after shutdown has commenced.
mchung
parents: 2277
diff changeset
    98
     * may be added to the delete on exit list by the application shutdown
acd4d6a53e3e 6829503: addShutdownHook fails if called after shutdown has commenced.
mchung
parents: 2277
diff changeset
    99
     * hooks.
acd4d6a53e3e 6829503: addShutdownHook fails if called after shutdown has commenced.
mchung
parents: 2277
diff changeset
   100
     *
30655
d83f50188ca9 8080422: some docs cleanup for core libs
avstepan
parents: 25859
diff changeset
   101
     * @param slot  the slot in the shutdown hook array, whose element
d83f50188ca9 8080422: some docs cleanup for core libs
avstepan
parents: 25859
diff changeset
   102
     *              will be invoked in order during shutdown
d83f50188ca9 8080422: some docs cleanup for core libs
avstepan
parents: 25859
diff changeset
   103
     * @param registerShutdownInProgress true to allow the hook
d83f50188ca9 8080422: some docs cleanup for core libs
avstepan
parents: 25859
diff changeset
   104
     *        to be registered even if the shutdown is in progress.
d83f50188ca9 8080422: some docs cleanup for core libs
avstepan
parents: 25859
diff changeset
   105
     * @param hook  the hook to be registered
2703
acd4d6a53e3e 6829503: addShutdownHook fails if called after shutdown has commenced.
mchung
parents: 2277
diff changeset
   106
     *
30655
d83f50188ca9 8080422: some docs cleanup for core libs
avstepan
parents: 25859
diff changeset
   107
     * @throws IllegalStateException if shutdown is in progress and
d83f50188ca9 8080422: some docs cleanup for core libs
avstepan
parents: 25859
diff changeset
   108
     *         the slot is not valid to register.
2703
acd4d6a53e3e 6829503: addShutdownHook fails if called after shutdown has commenced.
mchung
parents: 2277
diff changeset
   109
     */
acd4d6a53e3e 6829503: addShutdownHook fails if called after shutdown has commenced.
mchung
parents: 2277
diff changeset
   110
    void registerShutdownHook(int slot, boolean registerShutdownInProgress, Runnable hook);
2947
b0135c99348e 6511515: poor performance of LogRecord.inferCaller depending on java.lang.Throwable.getStackTraceElement
martin
parents: 2703
diff changeset
   111
b0135c99348e 6511515: poor performance of LogRecord.inferCaller depending on java.lang.Throwable.getStackTraceElement
martin
parents: 2703
diff changeset
   112
    /**
17426
45db19517346 8013528: Provide SharedSecrets access to String(char[], boolean) constructor
mduigou
parents: 15511
diff changeset
   113
     * Returns a new string backed by the provided character array. The
45db19517346 8013528: Provide SharedSecrets access to String(char[], boolean) constructor
mduigou
parents: 15511
diff changeset
   114
     * character array is not copied and must never be modified after the
45db19517346 8013528: Provide SharedSecrets access to String(char[], boolean) constructor
mduigou
parents: 15511
diff changeset
   115
     * String is created, in order to fulfill String's contract.
45db19517346 8013528: Provide SharedSecrets access to String(char[], boolean) constructor
mduigou
parents: 15511
diff changeset
   116
     *
45db19517346 8013528: Provide SharedSecrets access to String(char[], boolean) constructor
mduigou
parents: 15511
diff changeset
   117
     * @param chars the character array to back the string
45db19517346 8013528: Provide SharedSecrets access to String(char[], boolean) constructor
mduigou
parents: 15511
diff changeset
   118
     * @return a newly created string whose content is the character array
45db19517346 8013528: Provide SharedSecrets access to String(char[], boolean) constructor
mduigou
parents: 15511
diff changeset
   119
     */
45db19517346 8013528: Provide SharedSecrets access to String(char[], boolean) constructor
mduigou
parents: 15511
diff changeset
   120
    String newStringUnsafe(char[] chars);
20805
ae41216325dd 8013739: Better LDAP resource management
weijun
parents: 17426
diff changeset
   121
ae41216325dd 8013739: Better LDAP resource management
weijun
parents: 17426
diff changeset
   122
    /**
ae41216325dd 8013739: Better LDAP resource management
weijun
parents: 17426
diff changeset
   123
     * Returns a new Thread with the given Runnable and an
ae41216325dd 8013739: Better LDAP resource management
weijun
parents: 17426
diff changeset
   124
     * inherited AccessControlContext.
ae41216325dd 8013739: Better LDAP resource management
weijun
parents: 17426
diff changeset
   125
     */
ae41216325dd 8013739: Better LDAP resource management
weijun
parents: 17426
diff changeset
   126
    Thread newThreadWithAcc(Runnable target, AccessControlContext acc);
21628
50fd58446d64 8027351: (ref) Private finalize method invoked in preference to protected superclass method
mchung
parents: 21358
diff changeset
   127
50fd58446d64 8027351: (ref) Private finalize method invoked in preference to protected superclass method
mchung
parents: 21358
diff changeset
   128
    /**
50fd58446d64 8027351: (ref) Private finalize method invoked in preference to protected superclass method
mchung
parents: 21358
diff changeset
   129
     * Invokes the finalize method of the given object.
50fd58446d64 8027351: (ref) Private finalize method invoked in preference to protected superclass method
mchung
parents: 21358
diff changeset
   130
     */
50fd58446d64 8027351: (ref) Private finalize method invoked in preference to protected superclass method
mchung
parents: 21358
diff changeset
   131
    void invokeFinalize(Object o) throws Throwable;
25660
01fa3ccedf50 8050114: Expose Integer/Long formatUnsigned methods internally
redestad
parents: 21628
diff changeset
   132
01fa3ccedf50 8050114: Expose Integer/Long formatUnsigned methods internally
redestad
parents: 21628
diff changeset
   133
    /**
36511
9d0388c6b336 8142968: Module System implementation
alanb
parents: 35707
diff changeset
   134
     * Returns the boot Layer
9d0388c6b336 8142968: Module System implementation
alanb
parents: 35707
diff changeset
   135
     */
9d0388c6b336 8142968: Module System implementation
alanb
parents: 35707
diff changeset
   136
    Layer getBootLayer();
9d0388c6b336 8142968: Module System implementation
alanb
parents: 35707
diff changeset
   137
9d0388c6b336 8142968: Module System implementation
alanb
parents: 35707
diff changeset
   138
    /**
9d0388c6b336 8142968: Module System implementation
alanb
parents: 35707
diff changeset
   139
     * Returns the ServicesCatalog for the given class loader.
9d0388c6b336 8142968: Module System implementation
alanb
parents: 35707
diff changeset
   140
     */
9d0388c6b336 8142968: Module System implementation
alanb
parents: 35707
diff changeset
   141
    ServicesCatalog getServicesCatalog(ClassLoader cl);
9d0388c6b336 8142968: Module System implementation
alanb
parents: 35707
diff changeset
   142
9d0388c6b336 8142968: Module System implementation
alanb
parents: 35707
diff changeset
   143
    /**
9d0388c6b336 8142968: Module System implementation
alanb
parents: 35707
diff changeset
   144
     * Returns the ServicesCatalog for the given class loader, creating it
9d0388c6b336 8142968: Module System implementation
alanb
parents: 35707
diff changeset
   145
     * if doesn't already exist.
9d0388c6b336 8142968: Module System implementation
alanb
parents: 35707
diff changeset
   146
     */
9d0388c6b336 8142968: Module System implementation
alanb
parents: 35707
diff changeset
   147
    ServicesCatalog createOrGetServicesCatalog(ClassLoader cl);
9d0388c6b336 8142968: Module System implementation
alanb
parents: 35707
diff changeset
   148
9d0388c6b336 8142968: Module System implementation
alanb
parents: 35707
diff changeset
   149
    /**
36972
27147cde3256 8152115: (proxy) Examine performance of dynamic proxy creation
plevart
parents: 36511
diff changeset
   150
     * Returns the ConcurrentHashMap used as a storage for ClassLoaderValue(s)
27147cde3256 8152115: (proxy) Examine performance of dynamic proxy creation
plevart
parents: 36511
diff changeset
   151
     * associated with the given class loader, creating it if it doesn't already exist.
27147cde3256 8152115: (proxy) Examine performance of dynamic proxy creation
plevart
parents: 36511
diff changeset
   152
     */
27147cde3256 8152115: (proxy) Examine performance of dynamic proxy creation
plevart
parents: 36511
diff changeset
   153
    ConcurrentHashMap<?, ?> createOrGetClassLoaderValueMap(ClassLoader cl);
27147cde3256 8152115: (proxy) Examine performance of dynamic proxy creation
plevart
parents: 36511
diff changeset
   154
27147cde3256 8152115: (proxy) Examine performance of dynamic proxy creation
plevart
parents: 36511
diff changeset
   155
    /**
36511
9d0388c6b336 8142968: Module System implementation
alanb
parents: 35707
diff changeset
   156
     * Returns a class loaded by the bootstrap class loader.
9d0388c6b336 8142968: Module System implementation
alanb
parents: 35707
diff changeset
   157
     */
9d0388c6b336 8142968: Module System implementation
alanb
parents: 35707
diff changeset
   158
    Class<?> findBootstrapClassOrNull(ClassLoader cl, String name);
9d0388c6b336 8142968: Module System implementation
alanb
parents: 35707
diff changeset
   159
9d0388c6b336 8142968: Module System implementation
alanb
parents: 35707
diff changeset
   160
    /**
9d0388c6b336 8142968: Module System implementation
alanb
parents: 35707
diff changeset
   161
     * Returns a URL to a resource with the given name in a module that is
9d0388c6b336 8142968: Module System implementation
alanb
parents: 35707
diff changeset
   162
     * defined to the given class loader.
9d0388c6b336 8142968: Module System implementation
alanb
parents: 35707
diff changeset
   163
     */
9d0388c6b336 8142968: Module System implementation
alanb
parents: 35707
diff changeset
   164
    URL findResource(ClassLoader cl, String moduleName, String name) throws IOException;
9d0388c6b336 8142968: Module System implementation
alanb
parents: 35707
diff changeset
   165
9d0388c6b336 8142968: Module System implementation
alanb
parents: 35707
diff changeset
   166
    /**
9d0388c6b336 8142968: Module System implementation
alanb
parents: 35707
diff changeset
   167
     * Returns the Packages for the given class loader.
9d0388c6b336 8142968: Module System implementation
alanb
parents: 35707
diff changeset
   168
     */
9d0388c6b336 8142968: Module System implementation
alanb
parents: 35707
diff changeset
   169
    Stream<Package> packages(ClassLoader cl);
9d0388c6b336 8142968: Module System implementation
alanb
parents: 35707
diff changeset
   170
9d0388c6b336 8142968: Module System implementation
alanb
parents: 35707
diff changeset
   171
    /**
9d0388c6b336 8142968: Module System implementation
alanb
parents: 35707
diff changeset
   172
     * Define a Package of the given name and module by the given class loader.
9d0388c6b336 8142968: Module System implementation
alanb
parents: 35707
diff changeset
   173
     */
9d0388c6b336 8142968: Module System implementation
alanb
parents: 35707
diff changeset
   174
    Package definePackage(ClassLoader cl, String name, Module module);
9d0388c6b336 8142968: Module System implementation
alanb
parents: 35707
diff changeset
   175
9d0388c6b336 8142968: Module System implementation
alanb
parents: 35707
diff changeset
   176
    /**
35707
66cdb7e01a3e 8148936: Adapt UUID.toString() to Compact Strings
shade
parents: 34372
diff changeset
   177
     * Invokes Long.fastUUID
25660
01fa3ccedf50 8050114: Expose Integer/Long formatUnsigned methods internally
redestad
parents: 21628
diff changeset
   178
     */
35707
66cdb7e01a3e 8148936: Adapt UUID.toString() to Compact Strings
shade
parents: 34372
diff changeset
   179
    String fastUUID(long lsb, long msb);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   180
}