Categories:
Audio (13)
Biotech (29)
Bytecode (36)
Database (77)
Framework (7)
Game (7)
General (507)
Graphics (53)
I/O (35)
IDE (2)
JAR Tools (101)
JavaBeans (21)
JDBC (121)
JDK (426)
JSP (20)
Logging (108)
Mail (58)
Messaging (8)
Network (84)
PDF (97)
Report (7)
Scripting (84)
Security (32)
Server (121)
Servlet (26)
SOAP (24)
Testing (54)
Web (15)
XML (309)
Collections:
Other Resources:
JRE 8 rt.jar - com.* Package Source Code
JRE 8 rt.jar is the JAR file for JRE 8 RT (Runtime) libraries.
JRE (Java Runtime) 8 is the runtime environment included in JDK 8.
JRE 8 rt.jar libraries are divided into 6 packages:
com.* - Internal Oracle and Sun Microsystems libraries java.* - Standard Java API libraries. javax.* - Extended Java API libraries. jdk.* - JDK supporting libraries. org.* - Third party libraries. sun.* - Old libraries developed by Sun Microsystems.
JAR File Information:
Directory of C:\fyicenter\jdk-1.8.0_191\jre\lib 63,596,151 rt.jar
Here is the list of Java classes of the com.* package in JRE 1.8.0_191 rt.jar. Java source codes are also provided.
✍: FYIcenter
⏎ com/sun/corba/se/impl/encoding/BufferManagerWrite.java
/* * Copyright (c) 2000, 2003, Oracle and/or its affiliates. All rights reserved. * ORACLE PROPRIETARY/CONFIDENTIAL. Use is subject to license terms. * * * * * * * * * * * * * * * * * * * * */ package com.sun.corba.se.impl.encoding; import com.sun.corba.se.spi.logging.CORBALogDomains; import com.sun.corba.se.spi.orb.ORB; import com.sun.corba.se.impl.encoding.ByteBufferWithInfo; import com.sun.corba.se.impl.logging.ORBUtilSystemException; /** * Defines the contract between the BufferManager and * CDR stream on the writing side. The CDR stream * calls back to the BufferManagerWrite when it needs * more room in the output buffer to continue. The * BufferManager can then grow the output buffer or * use some kind of fragmentation technique. */ public abstract class BufferManagerWrite { protected ORB orb ; protected ORBUtilSystemException wrapper ; BufferManagerWrite( ORB orb ) { this.orb = orb ; this.wrapper = ORBUtilSystemException.get( orb, CORBALogDomains.RPC_ENCODING ) ; } /** * Has the stream sent out any fragments so far? */ public abstract boolean sentFragment(); /** * Has the entire message been sent? (Has * sendMessage been called?) */ public boolean sentFullMessage() { return sentFullMessage; } /** * Returns the correct buffer size for this type of * buffer manager as set in the ORB. */ public abstract int getBufferSize(); /* * Called from CDROutputStream.grow. * * bbwi.buf contains a byte array which needs to grow by bbwi.needed bytes. * * This can be handled in several ways: * * 1. Resize the bbwi.buf like the current implementation of * CDROutputStream.grow. * * 2. Collect the buffer for a later send: * this.bufQ.put(bbwi); * return new ByteBufferWithInfo(bbwi.length); * * 3. Send buffer as fragment: * Backpatch fragment size field in bbwi.buf. * Set more fragments bit in bbwi.buf. * this.connection.send(bbwi); * return reinitialized bbwi.buf with fragment header * * All cases should adjust the returned bbwi.* appropriately. * * Should set the bbwi.fragmented flag to true only in cases 2 and 3. */ public abstract void overflow (ByteBufferWithInfo bbwi); /** * Called after Stub._invoke (i.e., before complete message has been sent). * * IIOPOutputStream.writeTo called from IIOPOutputStream.invoke * * Case: overflow was never called (bbwi.buf contains complete message). * Backpatch size field. * If growing or collecting: * this.bufQ.put(bbwi). * this.bufQ.iterate // However, see comment in getBufferQ * this.connection.send(fragment) * If streaming: * this.connection.send(bbwi). * * Case: overflow was called N times (bbwi.buf contains last buffer). * If growing or collecting: * this.bufQ.put(bbwi). * backpatch size field in first buffer. * this.bufQ.iterate // However, see comment in getBufferQ * this.connection.send(fragment) * If streaming: * backpatch fragment size field in bbwi.buf. * Set no more fragments bit. * this.connection.send(bbwi). */ public abstract void sendMessage (); /** * A reference to the connection level stream will be required when * sending fragments. */ public void setOutputObject(Object outputObject) { this.outputObject = outputObject; } /** * Close the BufferManagerWrite and do any outstanding cleanup. */ abstract public void close(); // XREVISIT - Currently a java.lang.Object during // the rip-int-generic transition. Should eventually // become a GIOPOutputObject. protected Object outputObject; protected boolean sentFullMessage = false; }
⏎ com/sun/corba/se/impl/encoding/BufferManagerWrite.java
Or download all of them as a single archive file:
File name: jre-rt-com-1.8.0_191-src.zip File size: 8099783 bytes Release date: 2018-10-28 Download
⇒ Backup JDK 8 Installation Directory
2023-02-07, 235300👍, 3💬
Popular Posts:
JRE 8 plugin.jar is the JAR file for JRE 8 Java Control Panel Plugin interface and tools. JRE (Java ...
How to download and install ojdbc6.jar for Oracle 11g R2? ojdbc6.jar for Oracle 11g R2 is a Java 6, ...
JDK 1.1 source code directory contains Java source code for JDK 1.1 core classes: "C:\fyicenter\jdk-...
What Is poi-scratchpad-3.5.jar? poi-scratchpad-3.5.jar is one of the JAR files for Apache POI 3.5, w...
JasperReports, the world's most popular open source business intelligence and reporting engine and J...