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/awt/Insets.java
/* * @(#)Insets.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.awt; /** * An <code>Insets</code> object is a representation of the borders * of a container. It specifies the space that a container must leave * at each of its edges. The space can be a border, a blank space, or * a title. * * @version 1.15, 12/10/01 * @author Arthur van Hoff * @author Sami Shaio * @see java.awt.LayoutManager * @see java.awt.Container * @since JDK1.0 */ public class Insets implements Cloneable, java.io.Serializable { /** * The inset from the top. * @since JDK1.0 */ public int top; /** * The inset from the left. * @since JDK1.0 */ public int left; /** * The inset from the bottom. * @since JDK1.0 */ public int bottom; /** * The inset from the right. * @since JDK1.0 */ public int right; /* * JDK 1.1 serialVersionUID */ private static final long serialVersionUID = -2272572637695466749L; /** * Creates and initializes a new <code>Insets</code> object with the * specified top, left, bottom, and right insets. * @param top the inset from the top. * @param left the inset from the left. * @param bottom the inset from the bottom. * @param right the inset from the right. * @since JDK1.0 */ public Insets(int top, int left, int bottom, int right) { this.top = top; this.left = left; this.bottom = bottom; this.right = right; } /** * Checks whether two insets objects are equal. Two instances * of <code>Insets</code> are equal if the four integer values * of the fields <code>top</code>, <code>left</code>, * <code>bottom</code>, and <code>right</code> are all equal. * @return <code>true</code> if the two insets are equal; * otherwise <code>false</code>. * @since JDK1.1 */ public boolean equals(Object obj) { if (obj instanceof Insets) { Insets insets = (Insets)obj; return ((top == insets.top) && (left == insets.left) && (bottom == insets.bottom) && (right == insets.right)); } return false; } /** * Returns a <code>String</code> object representing this * <code>Insets</code> object's values. * @return a string representation of this <code>Insets</code> object, * including the values of its member fields. * @since JDK1.0 */ public String toString() { return getClass().getName() + "[top=" + top + ",left=" + left + ",bottom=" + bottom + ",right=" + right + "]"; } /** * Create a copy of this object. * @return a copy of this <code>Insets</code> object. * @since JDK1.0 */ public Object clone() { try { return super.clone(); } catch (CloneNotSupportedException e) { // this shouldn't happen, since we are Cloneable throw new InternalError(); } } }
⏎ java/awt/Insets.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, 175077👍, 0💬
Popular Posts:
JDK 11 jrt-fs.jar is the JAR file for JDK 11 JRT-FS (Java RunTime - File System) defined in the "jdk...
If you are a Java developer, it is very often that you need to use some 3rd party libraries to perfo...
JDOM provides a solution for using XML from Java that is as simple as Java itself. There is no compe...
JDK 17 java.management.jmod is the JMOD file for JDK 17 Management module. JDK 17 Management module ...
The Apache FontBox library is an open source Java tool to obtain low level information from font fil...