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/FilteredImageSource.java
/* * @(#)FilteredImageSource.java 1.19 01/12/10 * * Copyright 2002 Sun Microsystems, Inc. All rights reserved. * SUN PROPRIETARY/CONFIDENTIAL. Use is subject to license terms. */ package java.awt.image; import java.awt.Image; import java.awt.image.ImageFilter; import java.awt.image.ImageConsumer; import java.awt.image.ImageProducer; import java.util.Hashtable; import java.awt.image.ColorModel; /** * This class is an implementation of the ImageProducer interface which * takes an existing image and a filter object and uses them to produce * image data for a new filtered version of the original image. * Here is an example which filters an image by swapping the red and * blue compents: * <pre> * * Image src = getImage("doc:///demo/images/duke/T1.gif"); * ImageFilter colorfilter = new RedBlueSwapFilter(); * Image img = createImage(new FilteredImageSource(src.getSource(), * colorfilter)); * * </pre> * * @see ImageProducer * * @version 1.19 12/10/01 * @author Jim Graham */ public class FilteredImageSource implements ImageProducer { ImageProducer src; ImageFilter filter; /** * Constructs an ImageProducer object from an existing ImageProducer * and a filter object. * @see ImageFilter * @see java.awt.Component#createImage */ public FilteredImageSource(ImageProducer orig, ImageFilter imgf) { src = orig; filter = imgf; } private Hashtable proxies; /** * Adds an ImageConsumer to the list of consumers interested in * data for this image. * @see ImageConsumer */ public synchronized void addConsumer(ImageConsumer ic) { if (proxies == null) { proxies = new Hashtable(); } if (!proxies.containsKey(ic)) { ImageFilter imgf = filter.getFilterInstance(ic); proxies.put(ic, imgf); src.addConsumer(imgf); } } /** * Determines whether an ImageConsumer is on the list of consumers * currently interested in data for this image. * @return true if the ImageConsumer is on the list; false otherwise * @see ImageConsumer */ public synchronized boolean isConsumer(ImageConsumer ic) { return (proxies != null && proxies.containsKey(ic)); } /** * Removes an ImageConsumer from the list of consumers interested in * data for this image. * @see ImageConsumer */ public synchronized void removeConsumer(ImageConsumer ic) { if (proxies != null) { ImageFilter imgf = (ImageFilter) proxies.get(ic); if (imgf != null) { src.removeConsumer(imgf); proxies.remove(ic); if (proxies.isEmpty()) { proxies = null; } } } } /** * Adds an ImageConsumer to the list of consumers interested in * data for this image, and immediately starts delivery of the * image data through the ImageConsumer interface. * @see ImageConsumer */ public void startProduction(ImageConsumer ic) { if (proxies == null) { proxies = new Hashtable(); } ImageFilter imgf = (ImageFilter) proxies.get(ic); if (imgf == null) { imgf = filter.getFilterInstance(ic); proxies.put(ic, imgf); } src.startProduction(imgf); } /** * Requests that a given ImageConsumer have the image data delivered * one more time in top-down, left-right order. The request is * handed to the ImageFilter for further processing, since the * ability to preserve the pixel ordering depends on the filter. * @see ImageConsumer */ public void requestTopDownLeftRightResend(ImageConsumer ic) { if (proxies != null) { ImageFilter imgf = (ImageFilter) proxies.get(ic); if (imgf != null) { imgf.resendTopDownLeftRight(src); } } } }
⏎ java/awt/image/FilteredImageSource.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, 175257👍, 0💬
Popular Posts:
XStream is a simple library to serialize objects to XML and back again. JAR File Size and Download L...
What Is commons-io-2.11.jar? commons-io-2.11.jar is the JAR file for Commons IO 2.5, which is a libr...
Apache Axis2 is the core engine for Web services. It is a complete re-design and re-write of the wid...
Jaxen, Release 1.1.1, is an open source XPath library written in Java. It is adaptable to many diffe...
Apache Ant Source Code Files are inside the Apache Ant source package file like apache-ant-1.10.10-s...