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/rmi/server/RemoteStub.java
/* * @(#)RemoteStub.java 1.10 01/12/10 * * Copyright 2002 Sun Microsystems, Inc. All rights reserved. * SUN PROPRIETARY/CONFIDENTIAL. Use is subject to license terms. */ package java.rmi.server; /** * The RemoteStub class is the common superclass to all client stubs * and provides the framework to support a wide range of remote * reference semantics. Stub objects are surrogates that support * exactly the same set of remote interfaces defined by the actual * implementation of the remote object. */ abstract public class RemoteStub extends RemoteObject { private static final long serialVersionUID = -1585587260594494182L; /** * Constructor for RemoteStub. */ protected RemoteStub() { super(); } /** * Constructor for RemoteStub, with the specified remote reference. */ protected RemoteStub(RemoteRef ref) { super(ref); } static protected void setRef(RemoteStub stub, RemoteRef ref) { stub.ref = ref; } }
⏎ java/rmi/server/RemoteStub.java
⇒ Backup JDK 1.1 Installation Directory
2018-11-17, 38352👍, 0💬
Popular Posts:
Byte Code Generation Library is high level API to generate and transform JAVA byte code. It is used ...
JDK 11 java.xml.jmod is the JMOD file for JDK 11 XML (eXtensible Markup Language) module. JDK 11 XML...
maven-compat-3.5.4.jar is the JAR file for Apache Maven 3.5.4 Compact module. The JAR file name may ...
JDK 11 java.xml.jmod is the JMOD file for JDK 11 XML (eXtensible Markup Language) module. JDK 11 XML...
How to run "jar" command from JDK tools.jar file? "jar" is the JAR (Java Archive) file management co...