Categories:
Audio (13)
Biotech (29)
Bytecode (22)
Database (79)
Framework (7)
Game (7)
General (497)
Graphics (53)
I/O (32)
IDE (2)
JAR Tools (70)
JavaBeans (16)
JDBC (86)
JDK (338)
JSP (20)
Logging (90)
Mail (54)
Messaging (8)
Network (106)
PDF (82)
Report (7)
Scripting (75)
Security (67)
Server (112)
Servlet (17)
SOAP (24)
Testing (55)
Web (24)
XML (287)
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/peer/TextAreaPeer.java
/* * @(#)TextAreaPeer.java 1.10 01/12/10 * * Copyright 2002 Sun Microsystems, Inc. All rights reserved. * SUN PROPRIETARY/CONFIDENTIAL. Use is subject to license terms. */ package java.awt.peer; import java.awt.Dimension; public interface TextAreaPeer extends TextComponentPeer { void insert(String text, int pos); void replaceRange(String text, int start, int end); Dimension getPreferredSize(int rows, int columns); Dimension getMinimumSize(int rows, int columns); /** * DEPRECATED: Replaced by insert(String, int). */ void insertText(String txt, int pos); /** * DEPRECATED: Replaced by ReplaceRange(String, int, int). */ void replaceText(String txt, int start, int end); /** * DEPRECATED: Replaced by getPreferredSize(int, int). */ Dimension preferredSize(int rows, int cols); /** * DEPRECATED: Replaced by getMinimumSize(int, int). */ Dimension minimumSize(int rows, int cols); }
⏎ java/awt/peer/TextAreaPeer.java
⇒ Backup JDK 1.1 Installation Directory
2018-11-17, 38354👍, 0💬
Popular Posts:
This XML and Web Services Security implementation, included as part of the JavaTM Web Services Devel...
What Is log4j-1.2.15.jar? I got the JAR file from apache-log4j-1.2.15.zip. log4j-1.2.15.jar is the v...
What Is xercesImpl.jar in Xerces Java 2.11.0? xercesImpl.jar in Xerces Java 2.11.0 is the JAR file f...
JSP(tm) Standard Tag Library 1.0 implementation - Jakarta Taglibs hosts the Standard Taglib 1.0, an ...
What Is javamail-1_2.zip? javamail-1_2.zip is the binary package of JavaMail API 1.2 in ZIP format. ...