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:
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/lang/reflect/Constructor.java
/* * @(#)Constructor.java 1.15 01/12/10 * * Copyright 2002 Sun Microsystems, Inc. All rights reserved. * SUN PROPRIETARY/CONFIDENTIAL. Use is subject to license terms. */ package java.lang.reflect; /** * Constructor provides information about, and access to, a single * constructor for a class. * * <p>Constructor permits widening conversions to occur when matching the * actual parameters to newInstance() with the underlying * constructor's formal parameters, but throws an * IllegalArgumentException if a narrowing conversion would occur. * * @see Member * @see java.lang.Class * @see java.lang.Class#getConstructors() * @see java.lang.Class#getConstructor() * @see java.lang.Class#getDeclaredConstructors() * * @author Nakul Saraiya */ public final class Constructor implements Member { private Class clazz; private int slot; private Class[] parameterTypes; private Class[] exceptionTypes; /** * Constructor. Only the Java Virtual Machine may construct * a Constructor. */ private Constructor() {} /** * Returns the Class object representing the class that declares * the constructor represented by this Constructor object. */ public Class getDeclaringClass() { return clazz; } /** * Returns the name of this constructor, as a string. This is * always the same as the name of the constructor's declaring * class. */ public String getName() { return getDeclaringClass().getName(); } /** * Returns the Java language modifiers for the constructor * represented by this Constructor object, as an integer. The * Modifier class should be used to decode the modifiers. * * @see Modifier */ public native int getModifiers(); /** * Returns an array of Class objects that represent the formal * parameter types, in declaration order, of the constructor * represented by this Constructor object. Returns an array of * length 0 if the underlying constructor takes no parameters. */ public Class[] getParameterTypes() { return Method.copy(parameterTypes); } /** * Returns an array of Class objects that represent the types of * the checked exceptions thrown by the underlying constructor * represented by this Constructor object. Returns an array of * length 0 if the constructor throws no checked exceptions. */ public Class[] getExceptionTypes() { return Method.copy(exceptionTypes); } /** * Compares this Constructor against the specified object. * Returns true if the objects are the same. Two Constructors are * the same if they were declared by the same class and have the * same formal parameter types. */ public boolean equals(Object obj) { if (obj != null && obj instanceof Constructor) { Constructor other = (Constructor)obj; if (getDeclaringClass() == other.getDeclaringClass()) { /* Avoid unnecessary cloning */ Class[] params1 = parameterTypes; Class[] params2 = other.parameterTypes; if (params1.length == params2.length) { for (int i = 0; i < params1.length; i++) { if (params1[i] != params2[i]) return false; } return true; } } } return false; } /** * Returns a hashcode for this Constructor. The hashcode is * the same as the hashcode for the underlying constructor's * declaring class name. */ public int hashCode() { return getDeclaringClass().getName().hashCode(); } /** * Return a string describing this Constructor. The string is * formatted as the constructor access modifiers, if any, * followed by the fully-qualified name of the declaring class, * followed by a parenthesized, comma-separated list of the * constructor's formal parameter types. For example: * <pre> * public java.util.Hashtable(int,float) * </pre> * * <p>The only possible modifiers for constructors are the access * modifiers <tt>public</tt>, <tt>protected</tt> or * <tt>private</tt>. Only one of these may appear, or none if the * constructor has default (package) access. */ public String toString() { try { StringBuffer sb = new StringBuffer(); int mod = getModifiers(); if (mod != 0) { sb.append(Modifier.toString(mod) + " "); } sb.append(Field.getTypeName(getDeclaringClass())); sb.append("("); Class[] params = parameterTypes; // avoid clone for (int j = 0; j < params.length; j++) { sb.append(Field.getTypeName(params[j])); if (j < (params.length - 1)) sb.append(","); } sb.append(")"); Class[] exceptions = exceptionTypes; // avoid clone if (exceptions.length > 0) { sb.append(" throws "); for (int k = 0; k < exceptions.length; k++) { sb.append(exceptions[k].getName()); if (k < (exceptions.length - 1)) sb.append(","); } } return sb.toString(); } catch (Exception e) { return "<" + e + ">"; } } /** * Uses the constructor represented by this Constructor object to * create and initialize a new instance of the constructor's * declaring class, with the specified initialization parameters. * Individual parameters are automatically unwrapped to match * primitive formal parameters, and both primitive and reference * parameters are subject to widening conversions as necessary. * Returns the newly created and initialized object. * * <p>Creation proceeds with the following steps, in order: * * <p>If the class that declares the underlying constructor * represents an abstract class, the creation throws an * InstantiationException. * * <p>If this Constructor object enforces Java language access * control and the underlying constructor is inaccessible, the * creation throws an IllegalAccessException. * * <p>If the number of actual parameters supplied via initargs is * different from the number of formal parameters required by the * underlying constructor, the creation throws an * IllegalArgumentException. * * <p>A new instance of the constructor's declaring class is * created, and its fields are initialized to their default * initial values. * * <p>For each actual parameter in the supplied initargs array: * * <p>If the corresponding formal parameter has a primitive type, * an unwrapping conversion is attempted to convert the object * value to a value of the primitive type. If this attempt fails, * the creation throws an IllegalArgumentException. * * <p>If, after possible unwrapping, the parameter value cannot be * converted to the corresponding formal parameter type by an * identity or widening conversion, the creation throws an * IllegalArgumentException. * * <p>Control transfers to the underlying constructor to * initialize the new instance. If the constructor completes * abruptly by throwing an exception, the exception is placed in * an InvocationTargetException and thrown in turn to the caller * of newInstance. * * <p>If the constructor completes normally, returns the newly * created and initialized instance. * * @exception IllegalAccessException if the underlying constructor * is inaccessible. * @exception IllegalArgumentException if the number of actual and formal * parameters differ, or if an unwrapping conversion fails. * @exception InstantiationException if the class that declares the * underlying constructor represents an abstract class. * @exception InvocationTargetException if the underlying constructor * throws an exception. */ public native Object newInstance(Object[] initargs) throws InstantiationException, IllegalAccessException, IllegalArgumentException, InvocationTargetException; }
⏎ java/lang/reflect/Constructor.java
Or download all of them as a single archive file:
File name: jdk-1.1.8-src.zip File size: 1574187 bytes Release date: 2018-11-16 Download
⇒ Backup JDK 1.1 Installation Directory
2018-11-17, 175260👍, 0💬
Popular Posts:
pache Derby is an open source relational database implemented entirely in Java and available under t...
What Is HttpComponents httpcore-4.2.2.jar? HttpComponents httpcore-4.2.2.jar is the JAR file for Apa...
Apache Log4j 1.2 Bridge allows applications coded to use Log4j 1.2 API to use Log4j 2 instead. Bytec...
HttpComponents Client Source Code Files are provided in the source package file, httpcomponents-clie...
How to download and install JDK (Java Development Kit) 5? If you want to write Java applications, yo...