Categories:
Audio (13)
Biotech (29)
Bytecode (22)
Database (79)
Framework (7)
Game (7)
General (497)
Graphics (53)
I/O (32)
IDE (2)
JAR Tools (70)
JavaBeans (16)
JDBC (86)
JDK (338)
JSP (20)
Logging (90)
Mail (54)
Messaging (8)
Network (106)
PDF (82)
Report (7)
Scripting (75)
Security (67)
Server (112)
Servlet (17)
SOAP (24)
Testing (55)
Web (24)
XML (287)
Other Resources:
JDK 1.1 Source Code Directory
JDK 1.1 source code directory contains Java source code for JDK 1.1 core classes:
"C:\fyicenter\jdk-1.1.8\src".
Here is the list of Java classes of the JDK 1.1 source code:
✍: FYIcenter
⏎ java/lang/Compiler.java
/* * @(#)Compiler.java 1.6 01/12/10 * * Copyright 2002 Sun Microsystems, Inc. All rights reserved. * SUN PROPRIETARY/CONFIDENTIAL. Use is subject to license terms. */ package java.lang; /** * The <code>Compiler</code> class is provided to support * Java-to-native-code compilers and related services. By design, the * <code>Compiler</code> class does nothing; it serves as a * placeholder for a JIT compiler implementation. * <p> * When the Java Virtual Machine first starts, it determines if the * system property <code>java.compiler</code> exists. (System * properties are accessible through <code>getProperty</code> and , * a method defined by the <code>System</code> class.) If so, it is * assumed to be the name of a library (with a platform-dependent * exact location and type); the <code>loadLibrary</code> method in * class <code>System</code> is called to load that library. If this * loading succeeds, the function named * <code>java_lang_Compiler_start()</code> in that library is called. * <p> * If no compiler is available, these methods do nothing. * * @author Frank Yellin * @version 1.6, 12/10/01 * @see java.lang.System#getProperty(java.lang.String) * @see java.lang.System#getProperty(java.lang.String, java.lang.String) * @see java.lang.System#loadLibrary(java.lang.String) * @since JDK1.0 */ public final class Compiler { private Compiler() {} // don't make instances private static native void initialize(); static { String library = null; try { library = System.getProperty("java.compiler"); if ((library != null) && (!library.equals("")) && /* to enable turning off the jit using an env var on win32, it is not possible to set an env var to an empty string on win32. */ (!library.equals("NONE"))) { System.loadLibrary(library); initialize(); } } catch (UnsatisfiedLinkError e) { System.err.println("Warning: JIT compiler \"" + library + "\" not found. Will use interpreter."); } } /** * Compiles the specified class. * * @param clazz a class. * @return <code>true</code> if the compilation succeeded; * <code>false</code> if the compilation failed or no compiler * is available. * @since JDK1.0 */ public static native boolean compileClass(Class clazz); /** * Compiles all classes whose name matches the specified string. * * @param string the name of the classes to compile. * @return <code>true</code> if the compilation succeeded; * <code>false</code> if the compilation failed or no compiler * is available. * @since JDK1.0 */ public static native boolean compileClasses(String string); /** * Examines the argument type and its fields and perform some documented * operation. No specific operations are required. * * @param any an argument. * @return a compiler-specific value, or <code>null</code> if no compiler * is available. * @since JDK1.0 */ public static native Object command(Object any); /** * Cause the Compiler to resume operation. * * @since JDK1.0 */ public static native void enable(); /** * Cause the Compiler to cease operation. * * @since JDK1.0 */ public static native void disable(); }
⏎ java/lang/Compiler.java
⇒ Backup JDK 1.1 Installation Directory
2018-11-17, 38295👍, 0💬
Popular Posts:
iText is an ideal library for developers looking to enhance web- and other applications with dynamic...
The Apache FontBox library is an open source Java tool to obtain low level information from font fil...
Where to find answers to frequently asked questions on Download and Installing of FOP 2.0? Here is a...
What Is poi-ooxml-3.5.jar? poi-ooxml-3.5.jar is one of the JAR files for Apache POI 3.5, which provi...
JLayer is a library that decodes/plays/converts MPEG 1/2/2.5 Layer 1/2/3 (i.e. MP3) in real time for...