FileDocCategorySizeDatePackage
IIOReadProgressListener.javaAPI DocAndroid 1.5 API3985Wed May 06 22:41:54 BST 2009javax.imageio.event

IIOReadProgressListener

public interface IIOReadProgressListener implements EventListener
The IIOReadProgressListener interface notifies callers about the progress of the image and thumbnail reading methods.
since
Android 1.0

Fields Summary
Constructors Summary
Methods Summary
public voidimageComplete(javax.imageio.ImageReader source)
Notifies this listener that the image reading has been completed.

param
source the ImageReader object which calls this method.

public voidimageProgress(javax.imageio.ImageReader source, float percentageDone)
Notifies this listener about the degree of completion of the read call.

param
source the ImageReader object which calls this method.
param
percentageDone the percentage of decoding done.

public voidimageStarted(javax.imageio.ImageReader source, int imageIndex)
Notifies this listener that an image read operation has been started.

param
source the ImageReader object which calls this method.
param
imageIndex the index of the image in an input file or stream to be read.

public voidreadAborted(javax.imageio.ImageReader source)
Notifies this listener that a read operation has been aborted.

param
source the ImageReader object which calls this method.

public voidsequenceComplete(javax.imageio.ImageReader source)
Notifies this listener that a sequence of read operations has been completed.

param
source the ImageReader object which calls this method.

public voidsequenceStarted(javax.imageio.ImageReader source, int minIndex)
Notifies this listener that a sequence of read operation has been started.

param
source the ImageReader object which calls this method.
param
minIndex the index of the first image to be read.

public voidthumbnailComplete(javax.imageio.ImageReader source)
Notifies that a thumbnail read operation has been completed.

param
source the ImageReader object which calls this method.

public voidthumbnailProgress(javax.imageio.ImageReader source, float percentageDone)
Notifies this listener about the degree of completion of the read call.

param
source the ImageReader object which calls this method.
param
percentageDone the percentage of decoding done.

public voidthumbnailStarted(javax.imageio.ImageReader source, int imageIndex, int thumbnailIndex)
Notifies this listener that a thumbnail reading operation has been started.

param
source the ImageReader object which calls this method.
param
imageIndex the index of the image in an input file or stream to be read.
param
thumbnailIndex the index of the thumbnail to be read.