0N/A/*
2362N/A * Copyright (c) 2003, 2006, Oracle and/or its affiliates. All rights reserved.
0N/A * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
0N/A *
0N/A * This code is free software; you can redistribute it and/or modify it
0N/A * under the terms of the GNU General Public License version 2 only, as
2362N/A * published by the Free Software Foundation. Oracle designates this
0N/A * particular file as subject to the "Classpath" exception as provided
2362N/A * by Oracle in the LICENSE file that accompanied this code.
0N/A *
0N/A * This code is distributed in the hope that it will be useful, but WITHOUT
0N/A * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
0N/A * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
0N/A * version 2 for more details (a copy is included in the LICENSE file that
0N/A * accompanied this code).
0N/A *
0N/A * You should have received a copy of the GNU General Public License version
0N/A * 2 along with this work; if not, write to the Free Software Foundation,
0N/A * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
0N/A *
2362N/A * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
2362N/A * or visit www.oracle.com if you need additional information or have any
2362N/A * questions.
0N/A */
0N/A
0N/Apackage sun.misc;
0N/A
0N/Aimport sun.reflect.ConstantPool;
0N/Aimport sun.reflect.annotation.AnnotationType;
0N/Aimport sun.nio.ch.Interruptible;
0N/A
0N/Apublic interface JavaLangAccess {
0N/A /** Return the constant pool for a class. */
0N/A ConstantPool getConstantPool(Class klass);
0N/A
0N/A /**
0N/A * Set the AnnotationType instance corresponding to this class.
0N/A * (This method only applies to annotation types.)
0N/A */
0N/A void setAnnotationType(Class klass, AnnotationType annotationType);
0N/A
0N/A /**
0N/A * Get the AnnotationType instance corresponding to this class.
0N/A * (This method only applies to annotation types.)
0N/A */
0N/A AnnotationType getAnnotationType(Class klass);
0N/A
0N/A /**
0N/A * Returns the elements of an enum class or null if the
0N/A * Class object does not represent an enum type;
0N/A * the result is uncloned, cached, and shared by all callers.
0N/A */
0N/A <E extends Enum<E>> E[] getEnumConstantsShared(Class<E> klass);
0N/A
0N/A /** Set thread's blocker field. */
0N/A void blockedOn(Thread t, Interruptible b);
947N/A
1189N/A /**
1189N/A * Registers a shutdown hook.
1189N/A *
1189N/A * It is expected that this method with registerShutdownInProgress=true
1189N/A * is only used to register DeleteOnExitHook since the first file
1189N/A * may be added to the delete on exit list by the application shutdown
1189N/A * hooks.
1189N/A *
1189N/A * @params slot the slot in the shutdown hook array, whose element
1189N/A * will be invoked in order during shutdown
1189N/A * @params registerShutdownInProgress true to allow the hook
1189N/A * to be registered even if the shutdown is in progress.
1189N/A * @params hook the hook to be registered
1189N/A *
1189N/A * @throw IllegalStateException if shutdown is in progress and
1189N/A * the slot is not valid to register.
1189N/A */
1189N/A void registerShutdownHook(int slot, boolean registerShutdownInProgress, Runnable hook);
1271N/A
1271N/A /**
1271N/A * Returns the number of stack frames represented by the given throwable.
1271N/A */
1271N/A int getStackTraceDepth(Throwable t);
1271N/A
1271N/A /**
1271N/A * Returns the ith StackTraceElement for the given throwable.
1271N/A */
1271N/A StackTraceElement getStackTraceElement(Throwable t, int i);
5047N/A
5047N/A /**
5047N/A * Returns the murmur hash value for the specified String.
5047N/A */
5047N/A int getStringHash32(String string);
0N/A}