jdk/src/java.base/share/classes/jdk/internal/misc/JavaLangAccess.java
author alanb
Thu, 17 Mar 2016 19:04:16 +0000
changeset 36511 9d0388c6b336
parent 35707 66cdb7e01a3e
child 36972 27147cde3256
permissions -rw-r--r--
8142968: Module System implementation Summary: Initial integration of JEP 200, JEP 260, JEP 261, and JEP 282 Reviewed-by: alanb, mchung, naoto, rriggs, psandoz, plevart, mullan, ascarpino, vinnie, prr, sherman, dfuchs, mhaupt Contributed-by: alan.bateman@oracle.com, alex.buckley@oracle.com, jonathan.gibbons@oracle.com, karen.kinnear@oracle.com, mandy.chung@oracle.com, mark.reinhold@oracle.com, chris.hegarty@oracle.com, alexandr.scherbatiy@oracle.com, amy.lu@oracle.com, calvin.cheung@oracle.com, daniel.fuchs@oracle.com, erik.joelsson@oracle.com, harold.seigel@oracle.com, jaroslav.bachorik@oracle.com, jean-francois.denise@oracle.com, jan.lahoda@oracle.com, james.laskey@oracle.com, lois.foltan@oracle.com, miroslav.kos@oracle.com, huaming.li@oracle.com, sean.mullan@oracle.com, naoto.sato@oracle.com, masayoshi.okutsu@oracle.com, peter.levart@gmail.com, philip.race@oracle.com, claes.redestad@oracle.com, sergey.bylokhov@oracle.com, alexandre.iline@oracle.com, volker.simonis@gmail.com, staffan.larsen@oracle.com, stuart.marks@oracle.com, semyon.sadetsky@oracle.com, serguei.spitsyn@oracle.com, sundararajan.athijegannathan@oracle.com, valerie.peng@oracle.com, vincent.x.ryan@oracle.com, weijun.wang@oracle.com, yuri.nesterenko@oracle.com, yekaterina.kantserova@oracle.com, alexander.kulyakhtin@oracle.com, felix.yang@oracle.com, andrei.eremeev@oracle.com, frank.yuan@oracle.com, sergei.pikalev@oracle.com, sibabrata.sahoo@oracle.com, tiantian.du@oracle.com, sha.jiang@oracle.com
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;
36511
9d0388c6b336 8142968: Module System implementation
alanb
parents: 35707
diff changeset
    36
import java.util.stream.Stream;
20805
ae41216325dd 8013739: Better LDAP resource management
weijun
parents: 17426
diff changeset
    37
36511
9d0388c6b336 8142968: Module System implementation
alanb
parents: 35707
diff changeset
    38
import jdk.internal.module.ServicesCatalog;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    39
import sun.reflect.ConstantPool;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    40
import sun.reflect.annotation.AnnotationType;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    41
import sun.nio.ch.Interruptible;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    42
90ce3da70b43 Initial load
duke
parents:
diff changeset
    43
public interface JavaLangAccess {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    44
    /** Return the constant pool for a class. */
11117
b6e68b1344d4 7116404: Miscellaneous warnings (java.rmi.**, serialization, some core classes)
alanb
parents: 5506
diff changeset
    45
    ConstantPool getConstantPool(Class<?> klass);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    46
90ce3da70b43 Initial load
duke
parents:
diff changeset
    47
    /**
18827
ecbd9c8bef12 7122142: (ann) Race condition between isAnnotationPresent and getAnnotations
plevart
parents: 17426
diff changeset
    48
     * Compare-And-Swap the AnnotationType instance corresponding to this class.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    49
     * (This method only applies to annotation types.)
90ce3da70b43 Initial load
duke
parents:
diff changeset
    50
     */
18827
ecbd9c8bef12 7122142: (ann) Race condition between isAnnotationPresent and getAnnotations
plevart
parents: 17426
diff changeset
    51
    boolean casAnnotationType(Class<?> klass, AnnotationType oldType, AnnotationType newType);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    52
90ce3da70b43 Initial load
duke
parents:
diff changeset
    53
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
    54
     * Get the AnnotationType instance corresponding to this class.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    55
     * (This method only applies to annotation types.)
90ce3da70b43 Initial load
duke
parents:
diff changeset
    56
     */
11117
b6e68b1344d4 7116404: Miscellaneous warnings (java.rmi.**, serialization, some core classes)
alanb
parents: 5506
diff changeset
    57
    AnnotationType getAnnotationType(Class<?> klass);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    58
90ce3da70b43 Initial load
duke
parents:
diff changeset
    59
    /**
21358
d41ff832d4f6 8027170: Annotations declared on super-super-class should be overridden by super-class.
alundblad
parents: 20831
diff changeset
    60
     * 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
    61
     */
d41ff832d4f6 8027170: Annotations declared on super-super-class should be overridden by super-class.
alundblad
parents: 20831
diff changeset
    62
    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
    63
d41ff832d4f6 8027170: Annotations declared on super-super-class should be overridden by super-class.
alundblad
parents: 20831
diff changeset
    64
    /**
15510
898d924a7efd 8004698: Implement Core Reflection for Type Annotations
jfranck
parents: 14676
diff changeset
    65
     * 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
    66
     * of this Class' annotations.
ecbd9c8bef12 7122142: (ann) Race condition between isAnnotationPresent and getAnnotations
plevart
parents: 17426
diff changeset
    67
     */
ecbd9c8bef12 7122142: (ann) Race condition between isAnnotationPresent and getAnnotations
plevart
parents: 17426
diff changeset
    68
    byte[] getRawClassAnnotations(Class<?> klass);
ecbd9c8bef12 7122142: (ann) Race condition between isAnnotationPresent and getAnnotations
plevart
parents: 17426
diff changeset
    69
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
     * 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
    72
     * of this Class' type annotations.
898d924a7efd 8004698: Implement Core Reflection for Type Annotations
jfranck
parents: 14676
diff changeset
    73
     */
898d924a7efd 8004698: Implement Core Reflection for Type Annotations
jfranck
parents: 14676
diff changeset
    74
    byte[] getRawClassTypeAnnotations(Class<?> klass);
898d924a7efd 8004698: Implement Core Reflection for Type Annotations
jfranck
parents: 14676
diff changeset
    75
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
     * Get the array of bytes that is the class-file representation
898d924a7efd 8004698: Implement Core Reflection for Type Annotations
jfranck
parents: 14676
diff changeset
    78
     * of this Executable's type annotations.
898d924a7efd 8004698: Implement Core Reflection for Type Annotations
jfranck
parents: 14676
diff changeset
    79
     */
898d924a7efd 8004698: Implement Core Reflection for Type Annotations
jfranck
parents: 14676
diff changeset
    80
    byte[] getRawExecutableTypeAnnotations(Executable executable);
898d924a7efd 8004698: Implement Core Reflection for Type Annotations
jfranck
parents: 14676
diff changeset
    81
898d924a7efd 8004698: Implement Core Reflection for Type Annotations
jfranck
parents: 14676
diff changeset
    82
    /**
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    83
     * Returns the elements of an enum class or null if the
90ce3da70b43 Initial load
duke
parents:
diff changeset
    84
     * Class object does not represent an enum type;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    85
     * the result is uncloned, cached, and shared by all callers.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    86
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
    87
    <E extends Enum<E>> E[] getEnumConstantsShared(Class<E> klass);
90ce3da70b43 Initial load
duke
parents:
diff changeset
    88
90ce3da70b43 Initial load
duke
parents:
diff changeset
    89
    /** Set thread's blocker field. */
90ce3da70b43 Initial load
duke
parents:
diff changeset
    90
    void blockedOn(Thread t, Interruptible b);
2277
445a331b4a8b 6810254: Lazily instantiate the shared secret access objects
mchung
parents: 2
diff changeset
    91
2703
acd4d6a53e3e 6829503: addShutdownHook fails if called after shutdown has commenced.
mchung
parents: 2277
diff changeset
    92
    /**
acd4d6a53e3e 6829503: addShutdownHook fails if called after shutdown has commenced.
mchung
parents: 2277
diff changeset
    93
     * Registers a shutdown hook.
acd4d6a53e3e 6829503: addShutdownHook fails if called after shutdown has commenced.
mchung
parents: 2277
diff changeset
    94
     *
acd4d6a53e3e 6829503: addShutdownHook fails if called after shutdown has commenced.
mchung
parents: 2277
diff changeset
    95
     * It is expected that this method with registerShutdownInProgress=true
acd4d6a53e3e 6829503: addShutdownHook fails if called after shutdown has commenced.
mchung
parents: 2277
diff changeset
    96
     * 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
    97
     * 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
    98
     * hooks.
acd4d6a53e3e 6829503: addShutdownHook fails if called after shutdown has commenced.
mchung
parents: 2277
diff changeset
    99
     *
30655
d83f50188ca9 8080422: some docs cleanup for core libs
avstepan
parents: 25859
diff changeset
   100
     * @param slot  the slot in the shutdown hook array, whose element
d83f50188ca9 8080422: some docs cleanup for core libs
avstepan
parents: 25859
diff changeset
   101
     *              will be invoked in order during shutdown
d83f50188ca9 8080422: some docs cleanup for core libs
avstepan
parents: 25859
diff changeset
   102
     * @param registerShutdownInProgress true to allow the hook
d83f50188ca9 8080422: some docs cleanup for core libs
avstepan
parents: 25859
diff changeset
   103
     *        to be registered even if the shutdown is in progress.
d83f50188ca9 8080422: some docs cleanup for core libs
avstepan
parents: 25859
diff changeset
   104
     * @param hook  the hook to be registered
2703
acd4d6a53e3e 6829503: addShutdownHook fails if called after shutdown has commenced.
mchung
parents: 2277
diff changeset
   105
     *
30655
d83f50188ca9 8080422: some docs cleanup for core libs
avstepan
parents: 25859
diff changeset
   106
     * @throws IllegalStateException if shutdown is in progress and
d83f50188ca9 8080422: some docs cleanup for core libs
avstepan
parents: 25859
diff changeset
   107
     *         the slot is not valid to register.
2703
acd4d6a53e3e 6829503: addShutdownHook fails if called after shutdown has commenced.
mchung
parents: 2277
diff changeset
   108
     */
acd4d6a53e3e 6829503: addShutdownHook fails if called after shutdown has commenced.
mchung
parents: 2277
diff changeset
   109
    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
   110
b0135c99348e 6511515: poor performance of LogRecord.inferCaller depending on java.lang.Throwable.getStackTraceElement
martin
parents: 2703
diff changeset
   111
    /**
17426
45db19517346 8013528: Provide SharedSecrets access to String(char[], boolean) constructor
mduigou
parents: 15511
diff changeset
   112
     * 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
   113
     * 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
   114
     * 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
   115
     *
45db19517346 8013528: Provide SharedSecrets access to String(char[], boolean) constructor
mduigou
parents: 15511
diff changeset
   116
     * @param chars the character array to back the string
45db19517346 8013528: Provide SharedSecrets access to String(char[], boolean) constructor
mduigou
parents: 15511
diff changeset
   117
     * @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
   118
     */
45db19517346 8013528: Provide SharedSecrets access to String(char[], boolean) constructor
mduigou
parents: 15511
diff changeset
   119
    String newStringUnsafe(char[] chars);
20805
ae41216325dd 8013739: Better LDAP resource management
weijun
parents: 17426
diff changeset
   120
ae41216325dd 8013739: Better LDAP resource management
weijun
parents: 17426
diff changeset
   121
    /**
ae41216325dd 8013739: Better LDAP resource management
weijun
parents: 17426
diff changeset
   122
     * Returns a new Thread with the given Runnable and an
ae41216325dd 8013739: Better LDAP resource management
weijun
parents: 17426
diff changeset
   123
     * inherited AccessControlContext.
ae41216325dd 8013739: Better LDAP resource management
weijun
parents: 17426
diff changeset
   124
     */
ae41216325dd 8013739: Better LDAP resource management
weijun
parents: 17426
diff changeset
   125
    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
   126
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
     * 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
   129
     */
50fd58446d64 8027351: (ref) Private finalize method invoked in preference to protected superclass method
mchung
parents: 21358
diff changeset
   130
    void invokeFinalize(Object o) throws Throwable;
25660
01fa3ccedf50 8050114: Expose Integer/Long formatUnsigned methods internally
redestad
parents: 21628
diff changeset
   131
01fa3ccedf50 8050114: Expose Integer/Long formatUnsigned methods internally
redestad
parents: 21628
diff changeset
   132
    /**
36511
9d0388c6b336 8142968: Module System implementation
alanb
parents: 35707
diff changeset
   133
     * Returns the boot Layer
9d0388c6b336 8142968: Module System implementation
alanb
parents: 35707
diff changeset
   134
     */
9d0388c6b336 8142968: Module System implementation
alanb
parents: 35707
diff changeset
   135
    Layer getBootLayer();
9d0388c6b336 8142968: Module System implementation
alanb
parents: 35707
diff changeset
   136
9d0388c6b336 8142968: Module System implementation
alanb
parents: 35707
diff changeset
   137
    /**
9d0388c6b336 8142968: Module System implementation
alanb
parents: 35707
diff changeset
   138
     * Returns the ServicesCatalog for the given class loader.
9d0388c6b336 8142968: Module System implementation
alanb
parents: 35707
diff changeset
   139
     */
9d0388c6b336 8142968: Module System implementation
alanb
parents: 35707
diff changeset
   140
    ServicesCatalog getServicesCatalog(ClassLoader cl);
9d0388c6b336 8142968: Module System implementation
alanb
parents: 35707
diff changeset
   141
9d0388c6b336 8142968: Module System implementation
alanb
parents: 35707
diff changeset
   142
    /**
9d0388c6b336 8142968: Module System implementation
alanb
parents: 35707
diff changeset
   143
     * Returns the ServicesCatalog for the given class loader, creating it
9d0388c6b336 8142968: Module System implementation
alanb
parents: 35707
diff changeset
   144
     * if doesn't already exist.
9d0388c6b336 8142968: Module System implementation
alanb
parents: 35707
diff changeset
   145
     */
9d0388c6b336 8142968: Module System implementation
alanb
parents: 35707
diff changeset
   146
    ServicesCatalog createOrGetServicesCatalog(ClassLoader cl);
9d0388c6b336 8142968: Module System implementation
alanb
parents: 35707
diff changeset
   147
9d0388c6b336 8142968: Module System implementation
alanb
parents: 35707
diff changeset
   148
    /**
9d0388c6b336 8142968: Module System implementation
alanb
parents: 35707
diff changeset
   149
     * Returns a class loaded by the bootstrap class loader.
9d0388c6b336 8142968: Module System implementation
alanb
parents: 35707
diff changeset
   150
     */
9d0388c6b336 8142968: Module System implementation
alanb
parents: 35707
diff changeset
   151
    Class<?> findBootstrapClassOrNull(ClassLoader cl, String name);
9d0388c6b336 8142968: Module System implementation
alanb
parents: 35707
diff changeset
   152
9d0388c6b336 8142968: Module System implementation
alanb
parents: 35707
diff changeset
   153
    /**
9d0388c6b336 8142968: Module System implementation
alanb
parents: 35707
diff changeset
   154
     * 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
   155
     * defined to the given class loader.
9d0388c6b336 8142968: Module System implementation
alanb
parents: 35707
diff changeset
   156
     */
9d0388c6b336 8142968: Module System implementation
alanb
parents: 35707
diff changeset
   157
    URL findResource(ClassLoader cl, String moduleName, String name) throws IOException;
9d0388c6b336 8142968: Module System implementation
alanb
parents: 35707
diff changeset
   158
9d0388c6b336 8142968: Module System implementation
alanb
parents: 35707
diff changeset
   159
    /**
9d0388c6b336 8142968: Module System implementation
alanb
parents: 35707
diff changeset
   160
     * Returns the Packages for the given class loader.
9d0388c6b336 8142968: Module System implementation
alanb
parents: 35707
diff changeset
   161
     */
9d0388c6b336 8142968: Module System implementation
alanb
parents: 35707
diff changeset
   162
    Stream<Package> packages(ClassLoader cl);
9d0388c6b336 8142968: Module System implementation
alanb
parents: 35707
diff changeset
   163
9d0388c6b336 8142968: Module System implementation
alanb
parents: 35707
diff changeset
   164
    /**
9d0388c6b336 8142968: Module System implementation
alanb
parents: 35707
diff changeset
   165
     * Define a Package of the given name and module by the given class loader.
9d0388c6b336 8142968: Module System implementation
alanb
parents: 35707
diff changeset
   166
     */
9d0388c6b336 8142968: Module System implementation
alanb
parents: 35707
diff changeset
   167
    Package definePackage(ClassLoader cl, String name, Module module);
9d0388c6b336 8142968: Module System implementation
alanb
parents: 35707
diff changeset
   168
9d0388c6b336 8142968: Module System implementation
alanb
parents: 35707
diff changeset
   169
    /**
35707
66cdb7e01a3e 8148936: Adapt UUID.toString() to Compact Strings
shade
parents: 34372
diff changeset
   170
     * Invokes Long.fastUUID
25660
01fa3ccedf50 8050114: Expose Integer/Long formatUnsigned methods internally
redestad
parents: 21628
diff changeset
   171
     */
35707
66cdb7e01a3e 8148936: Adapt UUID.toString() to Compact Strings
shade
parents: 34372
diff changeset
   172
    String fastUUID(long lsb, long msb);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   173
}