Categories:
Audio (13)
Biotech (29)
Bytecode (35)
Database (77)
Framework (7)
Game (7)
General (512)
Graphics (53)
I/O (32)
IDE (2)
JAR Tools (86)
JavaBeans (16)
JDBC (89)
JDK (337)
JSP (20)
Logging (103)
Mail (54)
Messaging (8)
Network (71)
PDF (94)
Report (7)
Scripting (83)
Security (32)
Server (119)
Servlet (17)
SOAP (24)
Testing (50)
Web (19)
XML (301)
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/UnsatisfiedLinkError.java
/* * @(#)UnsatisfiedLinkError.java 1.15 01/12/10 * * Copyright 2002 Sun Microsystems, Inc. All rights reserved. * SUN PROPRIETARY/CONFIDENTIAL. Use is subject to license terms. */ package java.lang; /** * Thrown if the Java Virtual Machine cannot find an appropriate * native-language definition of a method declared <code>native</code>. * * @author unascribed * @version 1.15, 12/10/01 * @see java.lang.Runtime * @since JDK1.0 */ public class UnsatisfiedLinkError extends LinkageError { /** * Constructs an <code>UnsatisfiedLinkError</code> with no detail message. * * @since JDK1.0 */ public UnsatisfiedLinkError() { super(); } /** * Constructs an <code>UnsatisfiedLinkError</code> with the * specified detail message. * * @param s the detail message. * @since JDK1.0 */ public UnsatisfiedLinkError(String s) { super(s); } }
⏎ java/lang/UnsatisfiedLinkError.java
Â
⇒ Backup JDK 1.1 Installation Directory
⇠JDK 1.1 classes.zip - Java Core Classes
2018-11-17, 91179👍, 0💬
Popular Posts:
What is the dom\GetElementsByTagName .javaprovided in the Apache Xerces package? I have Apache Xerce...
The Jakarta-ORO Java classes are a set of text-processing Java classes that provide Perl5 compatible...
The JMX technology provides the tools for building distributed, Web-based, modular and dynamic solut...
XMLSchema, Release 1.4.2, is a lightweight Java object model that can be used to manipulate and gene...
JAX-WS is an API for building web services and clients. It is the next generation Web Services API r...