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:
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/sql/DriverPropertyInfo.java
/*
* @(#)DriverPropertyInfo.java 1.7 01/12/10
*
* Copyright 2002 Sun Microsystems, Inc. All rights reserved.
* SUN PROPRIETARY/CONFIDENTIAL. Use is subject to license terms.
*/
package java.sql;
/**
* <p>The DriverPropertyInfo class is only of interest to advanced programmers
* who need to interact with a Driver via getDriverProperties to discover
* and supply properties for connections.
*/
public class DriverPropertyInfo {
/**
* Constructor a DriverPropertyInfo with a name and value; other
* members default to their initial values.
*
* @param name the name of the property
* @param value the current value, which may be null
*/
public DriverPropertyInfo(String name, String value) {
this.name = name;
this.value = value;
}
/**
* The name of the property.
*/
public String name;
/**
* A brief description of the property. This may be null.
*/
public String description = null;
/**
* "required" is true if a value must be supplied for this property
* during Driver.connect. Otherwise the property is optional.
*/
public boolean required = false;
/**
* "value" specifies the current value of the property, based on a
* combination of the information supplied to getPropertyInfo, the
* Java environment, and driver supplied default values. This
* may be null if no value is known.
*/
public String value = null;
/**
* If the value may be selected from a particular set of values,
* then this is an array of the possible values. Otherwise it should
* be null.
*/
public String[] choices = null;
}
⏎ java/sql/DriverPropertyInfo.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, ≈347🔥, 0💬
Popular Posts:
commons-io-1.4.jar is the JAR file for Commons IO 1.4, which is a library of utilities to assist wit...
JDK 11 jdk.security.auth.jmod is the JMOD file for JDK 11 Security Auth module. JDK 11 Security Auth...
Java Servlet API 3.0.1 Source Code Files are important if you want to compile them with different JD...
JDK 11 jrt-fs.jar is the JAR file for JDK 11 JRT-FS (Java RunTime - File System) defined in the "jdk...
What Is in Xerces-J-bin.2.12.2.zip? Xerces-J-bin.2.12.2.zip file is the distribution package ZIP fil...