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 - org.* 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 org.* package in JRE 1.8.0_191 rt.jar. Java source codes are also provided.
✍: FYIcenter
⏎ org/omg/CosNaming/_BindingIteratorImplBase.java
/* * Copyright (c) 1997, 2000, Oracle and/or its affiliates. All rights reserved. * ORACLE PROPRIETARY/CONFIDENTIAL. Use is subject to license terms. * * * * * * * * * * * * * * * * * * * * */ /* * File: ./org/omg/CosNaming/_BindingIteratorImplBase.java * From: nameservice.idl * Date: Tue Aug 11 03:12:09 1998 * By: idltojava Java IDL 1.2 Aug 11 1998 02:00:18 * @deprecated Deprecated in JDK 1.4. */ package org.omg.CosNaming; public abstract class _BindingIteratorImplBase extends org.omg.CORBA.DynamicImplementation implements org.omg.CosNaming.BindingIterator { // Constructor public _BindingIteratorImplBase() { super(); } // Type strings for this class and its superclases private static final String _type_ids[] = { "IDL:omg.org/CosNaming/BindingIterator:1.0" }; public String[] _ids() { return (String[]) _type_ids.clone(); } private static java.util.Dictionary _methods = new java.util.Hashtable(); static { _methods.put("next_one", new java.lang.Integer(0)); _methods.put("next_n", new java.lang.Integer(1)); _methods.put("destroy", new java.lang.Integer(2)); } // DSI Dispatch call public void invoke(org.omg.CORBA.ServerRequest r) { switch (((java.lang.Integer) _methods.get(r.op_name())).intValue()) { case 0: // org.omg.CosNaming.BindingIterator.next_one { org.omg.CORBA.NVList _list = _orb().create_list(0); org.omg.CORBA.Any _b = _orb().create_any(); _b.type(org.omg.CosNaming.BindingHelper.type()); _list.add_value("b", _b, org.omg.CORBA.ARG_OUT.value); r.params(_list); org.omg.CosNaming.BindingHolder b; b = new org.omg.CosNaming.BindingHolder(); boolean ___result; ___result = this.next_one(b); org.omg.CosNaming.BindingHelper.insert(_b, b.value); org.omg.CORBA.Any __result = _orb().create_any(); __result.insert_boolean(___result); r.result(__result); } break; case 1: // org.omg.CosNaming.BindingIterator.next_n { org.omg.CORBA.NVList _list = _orb().create_list(0); org.omg.CORBA.Any _how_many = _orb().create_any(); _how_many.type(org.omg.CORBA.ORB.init().get_primitive_tc(org.omg.CORBA.TCKind.tk_ulong)); _list.add_value("how_many", _how_many, org.omg.CORBA.ARG_IN.value); org.omg.CORBA.Any _bl = _orb().create_any(); _bl.type(org.omg.CosNaming.BindingListHelper.type()); _list.add_value("bl", _bl, org.omg.CORBA.ARG_OUT.value); r.params(_list); int how_many; how_many = _how_many.extract_ulong(); org.omg.CosNaming.BindingListHolder bl; bl = new org.omg.CosNaming.BindingListHolder(); boolean ___result; ___result = this.next_n(how_many, bl); org.omg.CosNaming.BindingListHelper.insert(_bl, bl.value); org.omg.CORBA.Any __result = _orb().create_any(); __result.insert_boolean(___result); r.result(__result); } break; case 2: // org.omg.CosNaming.BindingIterator.destroy { org.omg.CORBA.NVList _list = _orb().create_list(0); r.params(_list); this.destroy(); org.omg.CORBA.Any __return = _orb().create_any(); __return.type(_orb().get_primitive_tc(org.omg.CORBA.TCKind.tk_void)); r.result(__return); } break; default: throw new org.omg.CORBA.BAD_OPERATION(0, org.omg.CORBA.CompletionStatus.COMPLETED_MAYBE); } } }
⏎ org/omg/CosNaming/_BindingIteratorImplBase.java
Or download all of them as a single archive file:
File name: jre-rt-org-1.8.0_191-src.zip File size: 951125 bytes Release date: 2018-10-28 Download
⇒ JRE 8 rt.jar - com.* Package Source Code
2021-12-10, 157247👍, 5💬
Popular Posts:
Where to find answers to frequently asked questions on Downloading and Using JDK (Java Development K...
The goal of the Geronimo project is to produce a server runtime framework that pulls together the be...
JDK 11 jrt-fs.jar is the JAR file for JDK 11 JRT-FS (Java RunTime - File System) defined in the "jdk...
io.jar is a component in iText Java library to provide input/output functionalities. iText Java libr...
JAX-WS is an API for building web services and clients. It is the next generation Web Services API r...