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/ComponentPeer.java
/* * @(#)ComponentPeer.java 1.24 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.*; import java.awt.image.ImageProducer; import java.awt.image.ImageObserver; import java.awt.image.ColorModel; public interface ComponentPeer { void setVisible(boolean b); void setEnabled(boolean b); void paint(Graphics g); void repaint(long tm, int x, int y, int width, int height); void print(Graphics g); void setBounds(int x, int y, int width, int height); void handleEvent(AWTEvent e); Point getLocationOnScreen(); Dimension getPreferredSize(); Dimension getMinimumSize(); ColorModel getColorModel(); java.awt.Toolkit getToolkit(); Graphics getGraphics(); FontMetrics getFontMetrics(Font font); void dispose(); void setForeground(Color c); void setBackground(Color c); void setFont(Font f); void setCursor(Cursor cursor); void requestFocus(); boolean isFocusTraversable(); Image createImage(ImageProducer producer); Image createImage(int width, int height); boolean prepareImage(Image img, int w, int h, ImageObserver o); int checkImage(Image img, int w, int h, ImageObserver o); /** * DEPRECATED: Replaced by getPreferredSize(). */ Dimension preferredSize(); /** * DEPRECATED: Replaced by getMinimumSize(). */ Dimension minimumSize(); /** * DEPRECATED: Replaced by setVisible(boolean). */ void show(); /** * DEPRECATED: Replaced by setVisible(boolean). */ void hide(); /** * DEPRECATED: Replaced by setEnabled(boolean). */ void enable(); /** * DEPRECATED: Replaced by setEnabled(boolean). */ void disable(); /** * DEPRECATED: Replaced by setBounds(int, int, int, int). */ void reshape(int x, int y, int width, int height); }
⏎ java/awt/peer/ComponentPeer.java
⇒ Backup JDK 1.1 Installation Directory
2018-11-17, 39211👍, 0💬
Popular Posts:
What Is jaxb-impl-2.1.12.jar? Java Architecture for XML Binding (JAXB) is a Java API that allows Jav...
JRE 8 rt.jar is the JAR file for JRE 8 RT (Runtime) libraries. JRE (Java Runtime) 8 is the runtime e...
commons-codec-1.11.jar is the JAR file for Apache Commons Codec 1.11, which provides implementations...
How to read XML document with DTD validation from socket connections with the socket\DelayedInput.ja.. .
commons-io-1.4.jar is the JAR file for Commons IO 1.4, which is a library of utilities to assist wit...