Categories:
Audio (13)
Biotech (29)
Bytecode (35)
Database (77)
Framework (7)
Game (7)
General (512)
Graphics (53)
I/O (32)
IDE (2)
JAR Tools (86)
JavaBeans (16)
JDBC (89)
JDK (337)
JSP (20)
Logging (103)
Mail (54)
Messaging (8)
Network (71)
PDF (94)
Report (7)
Scripting (83)
Security (32)
Server (119)
Servlet (17)
SOAP (24)
Testing (50)
Web (19)
XML (301)
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
Â
⇒ Backup JDK 1.1 Installation Directory
⇠JDK 1.1 classes.zip - Java Core Classes
2018-11-17, 91595👍, 0💬
Popular Posts:
commons-fileupload-1.3.3 -sources.jaris the source JAR file for Apache Commons FileUpload 1.3., whic...
How to download and install mysql-connector-java-5.1 .40.zip?Connector/J Java library is a JDBC Driv...
How to download and install JDK (Java Development Kit) 8? If you want to write Java applications, yo...
The JSR 105 XML Digital Signature 1.0.1 FCS implementation provides an API and implementation that a...
How to read XML document with XML Schema validation from socket connections with the socket\DelayedI...