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/CORBA/NamedValue.java
/* * Copyright (c) 1996, 1999, Oracle and/or its affiliates. All rights reserved. * ORACLE PROPRIETARY/CONFIDENTIAL. Use is subject to license terms. * * * * * * * * * * * * * * * * * * * * */ package org.omg.CORBA; /** * An object used in the DII and DSI to describe * arguments and return values. <code>NamedValue</code> objects * are also used in the <code>Context</code> * object routines to pass lists of property names and values. * <P> * A <code>NamedValue</code> object contains: * <UL> * <LI>a name -- If the <code>NamedValue</code> object is used to * describe arguments to a request, the name will be an argument * identifier specified in the OMG IDL interface definition * for the operation being described. * <LI>a value -- an <code>Any</code> object * <LI>an argument mode flag -- one of the following: * <UL> * <LI><code>ARG_IN.value</code> * <LI><code>ARG_OUT.value</code> * <LI><code>ARG_INOUT.value</code> * <LI>zero -- if this <code>NamedValue</code> object represents a property * in a <code>Context</code> object rather than a parameter or * return value * </UL> * </UL> * <P> * The class <code>NamedValue</code> has three methods, which * access its fields. The following code fragment demonstrates * creating a <code>NamedValue</code> object and then accessing * its fields: * <PRE> * ORB orb = ORB.init(args, null); * String s = "argument_1"; * org.omg.CORBA.Any myAny = orb.create_any(); * myAny.insert_long(12345); * int in = org.omg.CORBA.ARG_IN.value; * org.omg.CORBA.NamedValue nv = orb.create_named_value( * s, myAny, in); * System.out.println("This nv name is " + nv.name()); * try { * System.out.println("This nv value is " + nv.value().extract_long()); * System.out.println("This nv flag is " + nv.flags()); * } catch (org.omg.CORBA.BAD_OPERATION b) { * System.out.println("extract failed"); * } * </PRE> * * <P> * If this code fragment were put into a <code>main</code> method, * the output would be something like the following: * <PRE> * This nv name is argument_1 * This nv value is 12345 * This nv flag is 1 * </PRE> * <P> * Note that the method <code>value</code> returns an <code>Any</code> * object. In order to access the <code>long</code> contained in the * <code>Any</code> object, * we used the method <code>extract_long</code>. * * @see Any * @see ARG_IN * @see ARG_INOUT * @see ARG_OUT * * @since JDK1.2 */ public abstract class NamedValue { /** * Retrieves the name for this <code>NamedValue</code> object. * * @return a <code>String</code> object representing * the name of this <code>NamedValue</code> object */ public abstract String name(); /** * Retrieves the value for this <code>NamedValue</code> object. * * @return an <code>Any</code> object containing * the value of this <code>NamedValue</code> object */ public abstract Any value(); /** * Retrieves the argument mode flag for this <code>NamedValue</code> object. * * @return an <code>int</code> representing the argument * mode for this <code>NamedValue</code> object */ public abstract int flags(); }
⏎ org/omg/CORBA/NamedValue.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, 159106👍, 5💬
Popular Posts:
JAX-WS is an API for building web services and clients. It is the next generation Web Services API r...
pache Derby is an open source relational database implemented entirely in Java and available under t...
A stream buffer is a stream-based representation of an XML infoset in Java. Stream buffers are desig...
What Is js.jar in Rhino JavaScript 1.7R5? js.jar in Rhino JavaScript 1.7R5 is the JAR file for Rhino...
How to run "javac" command from JDK tools.jar file? "javac" is the Java compiler command that allows...