ImageProducer

Name

ImageProducer

[Graphic: Figure from the text]

Description

ImageProducer is an interface that provides the methods necessary for the production of images and the communication with classes that implement the ImageConsumer interface.

Interface Definition

public abstract interface java.awt.image.ImageProducer {
 // Interface Methods public abstract void addConsumer (ImageConsumer ic);
public abstract boolean isConsumer (ImageConsumer ic);
public abstract void removeConsumer (ImageConsumer ic);
public abstract void requestTopDownLeftRightResend (ImageConsumer ic);
public abstract void startProduction (ImageConsumer ic);
}

Interface Methods

addConsumer

public abstract void addConsumer (ImageConsumer ic)

isConsumer

public abstract boolean isConsumer (ImageConsumer ic)

removeConsumer

public abstract void removeConsumer (ImageConsumer ic)

requestTopDownLeftRightResend

public abstract void requestTopDownLeftRightResend (ImageConsumer ic)

startProduction

public abstract void startProduction (ImageConsumer ic)

See Also

FilteredImageSource, Image, ImageConsumer, ImageFilter, MemoryImageSource, Object