Categories:
Audio (13)
Biotech (29)
Bytecode (36)
Database (77)
Framework (7)
Game (7)
General (507)
Graphics (53)
I/O (35)
IDE (2)
JAR Tools (102)
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 (322)
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/ior/iiop/IIOPProfileTemplateImpl.java
/* * Copyright (c) 2000, 2013, Oracle and/or its affiliates. All rights reserved. * ORACLE PROPRIETARY/CONFIDENTIAL. Use is subject to license terms. * * * * * * * * * * * * * * * * * * * * */ package com.sun.corba.se.impl.ior.iiop; import java.util.Iterator ; import org.omg.IOP.TAG_INTERNET_IOP ; import org.omg.CORBA_2_3.portable.InputStream ; import org.omg.CORBA_2_3.portable.OutputStream ; import com.sun.corba.se.spi.ior.TaggedComponent ; import com.sun.corba.se.spi.ior.TaggedProfile ; import com.sun.corba.se.spi.ior.TaggedProfileTemplate ; import com.sun.corba.se.spi.ior.TaggedProfileTemplateBase ; import com.sun.corba.se.spi.ior.ObjectKeyTemplate ; import com.sun.corba.se.spi.ior.ObjectId ; import com.sun.corba.se.spi.ior.IdentifiableContainerBase ; import com.sun.corba.se.spi.ior.IdentifiableBase ; import com.sun.corba.se.impl.ior.EncapsulationUtility ; import com.sun.corba.se.spi.ior.iiop.IIOPProfileTemplate ; import com.sun.corba.se.spi.ior.iiop.IIOPAddress ; import com.sun.corba.se.spi.ior.iiop.IIOPFactories ; import com.sun.corba.se.impl.encoding.EncapsOutputStream ; import com.sun.corba.se.impl.encoding.CDROutputStream ; import com.sun.corba.se.spi.ior.iiop.GIOPVersion ; import com.sun.corba.se.spi.orb.ORB ; /** * @author * If getMinorVersion==0, this does not contain any tagged components */ public class IIOPProfileTemplateImpl extends TaggedProfileTemplateBase implements IIOPProfileTemplate { private ORB orb ; private GIOPVersion giopVersion ; private IIOPAddress primary ; public boolean equals( Object obj ) { if (!(obj instanceof IIOPProfileTemplateImpl)) return false ; IIOPProfileTemplateImpl other = (IIOPProfileTemplateImpl)obj ; return super.equals( obj ) && giopVersion.equals( other.giopVersion ) && primary.equals( other.primary ) ; } public int hashCode() { return super.hashCode() ^ giopVersion.hashCode() ^ primary.hashCode() ; } public TaggedProfile create( ObjectKeyTemplate oktemp, ObjectId id ) { return IIOPFactories.makeIIOPProfile( orb, oktemp, id, this ) ; } public GIOPVersion getGIOPVersion() { return giopVersion ; } public IIOPAddress getPrimaryAddress() { return primary ; } public IIOPProfileTemplateImpl( ORB orb, GIOPVersion version, IIOPAddress primary ) { this.orb = orb ; this.giopVersion = version ; this.primary = primary ; if (giopVersion.getMinor() == 0) // Adding tagged components is not allowed for IIOP 1.0, // so this template is complete and should be made immutable. makeImmutable() ; } public IIOPProfileTemplateImpl( InputStream istr ) { byte major = istr.read_octet() ; byte minor = istr.read_octet() ; giopVersion = GIOPVersion.getInstance( major, minor ) ; primary = new IIOPAddressImpl( istr ) ; orb = (ORB)(istr.orb()) ; // Handle any tagged components (if applicable) if (minor > 0) EncapsulationUtility.readIdentifiableSequence( this, orb.getTaggedComponentFactoryFinder(), istr ) ; makeImmutable() ; } public void write( ObjectKeyTemplate okeyTemplate, ObjectId id, OutputStream os) { giopVersion.write( os ) ; primary.write( os ) ; // Note that this is NOT an encapsulation: do not marshal // the endianness flag. However, the length is required. // Note that this cannot be accomplished with a codec! // Use the byte order of the given stream OutputStream encapsulatedOS = sun.corba.OutputStreamFactory.newEncapsOutputStream( (ORB)os.orb(), ((CDROutputStream)os).isLittleEndian() ) ; okeyTemplate.write( id, encapsulatedOS ) ; EncapsulationUtility.writeOutputStream( encapsulatedOS, os ) ; if (giopVersion.getMinor() > 0) EncapsulationUtility.writeIdentifiableSequence( this, os ) ; } /** Write out this IIOPProfileTemplateImpl only. */ public void writeContents( OutputStream os) { giopVersion.write( os ) ; primary.write( os ) ; if (giopVersion.getMinor() > 0) EncapsulationUtility.writeIdentifiableSequence( this, os ) ; } public int getId() { return TAG_INTERNET_IOP.value ; } public boolean isEquivalent( TaggedProfileTemplate temp ) { if (!(temp instanceof IIOPProfileTemplateImpl)) return false ; IIOPProfileTemplateImpl tempimp = (IIOPProfileTemplateImpl)temp ; return primary.equals( tempimp.primary ) ; } }
⏎ com/sun/corba/se/impl/ior/iiop/IIOPProfileTemplateImpl.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, ≈437🔥, 3💬
Popular Posts:
The Apache FontBox library is an open source Java tool to obtain low level information from font fil...
What Is wstx-asl-3.2.8.jar? wstx-asl-3.2.8.jar is JAR file for the ASL component of Woodstox 3.2.8. ...
The Bouncy Castle Crypto package is a Java implementation of cryptographic algorithms, it was develo...
The JMX technology provides the tools for building distributed, Web-based, modular and dynamic solut...
What Is junit-3.8.1.jar? junit-3.8.1.jar is the version 3.8.1 of JUnit JAR library file. JUnit is a ...