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/image/ImageProducer.java
/* * @(#)ImageProducer.java 1.13 01/12/10 * * Copyright 2002 Sun Microsystems, Inc. All rights reserved. * SUN PROPRIETARY/CONFIDENTIAL. Use is subject to license terms. */ package java.awt.image; /** * The interface for objects which can produce the image data for Images. * Each image contains an ImageProducer which is used to reconstruct * the image whenever it is needed, for example, when a new size of the * Image is scaled, or when the width or height of the Image is being * requested. * * @see ImageConsumer * * @version 1.13 12/10/01 * @author Jim Graham */ public interface ImageProducer { /** * This method is used to register an ImageConsumer with the * ImageProducer for access to the image data during a later * reconstruction of the Image. The ImageProducer may, at its * discretion, start delivering the image data to the consumer * using the ImageConsumer interface immediately, or when the * next available image reconstruction is triggered by a call * to the startProduction method. * @see #startProduction */ public void addConsumer(ImageConsumer ic); /** * This method determines if a given ImageConsumer object * is currently registered with this ImageProducer as one * of its consumers. */ public boolean isConsumer(ImageConsumer ic); /** * This method removes the given ImageConsumer object * from the list of consumers currently registered to * receive image data. It is not considered an error * to remove a consumer that is not currently registered. * The ImageProducer should stop sending data to this * consumer as soon as is feasible. */ public void removeConsumer(ImageConsumer ic); /** * This method both registers the given ImageConsumer object * as a consumer and starts an immediate reconstruction of * the image data which will then be delivered to this * consumer and any other consumer which may have already * been registered with the producer. This method differs * from the addConsumer method in that a reproduction of * the image data should be triggered as soon as possible. * @see #addConsumer */ public void startProduction(ImageConsumer ic); /** * This method is used by an ImageConsumer to request that * the ImageProducer attempt to resend the image data one * more time in TOPDOWNLEFTRIGHT order so that higher * quality conversion algorithms which depend on receiving * pixels in order can be used to produce a better output * version of the image. The ImageProducer is free to * ignore this call if it cannot resend the data in that * order. If the data can be resent, then the ImageProducer * should respond by executing the following minimum set of * ImageConsumer method calls: * <pre> * ic.setHints(TOPDOWNLEFTRIGHT | < otherhints >); * ic.setPixels(...); // As many times as needed * ic.imageComplete(); * </pre> * @see ImageConsumer#setHints */ public void requestTopDownLeftRightResend(ImageConsumer ic); }
⏎ java/awt/image/ImageProducer.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, 175199👍, 0💬
Popular Posts:
What Is activation.jar? I heard it's related to JAF (JavaBeans Activation Framework) 1.1? The if you...
XML Serializer, Release 2.7.1, allows you to write out XML, HTML etc. as a stream of characters from...
The Bouncy Castle Crypto package is a Java implementation of cryptographic algorithms, it was develo...
What Is jtds-1.2.2.jar? jtds-1.2.2.jar is the JAR files of jTDS Java library 1.2.2, which is a JDBC ...
What Is poi-examples-5.2.3.jar? poi-examples-5.2.3.jar is one of the JAR files for Apache POI 5.2.3,...