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

IIOWriteProgressListener

public interface IIOWriteProgressListener implements EventListener
The IIOWriteProgressListener interface provides methods to receive notification about the progress of the image and thumbnail writing methods.
since
Android 1.0

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

param
source the ImageWriter object which calls this method.

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

param
source the ImageWriter object which calls this method.
param
percentageDone the percentage of encoding done.

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

param
source the ImageWriter object which calls this method.
param
imageIndex the index of the image being written.

public voidthumbnailComplete(javax.imageio.ImageWriter source)
Notifies this listener that a thumbnail write operation has been completed.

param
source the ImageWriter object which calls this method.

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

param
source the ImageWriter object which calls this method.
param
percentageDone the percentage of encoding done.

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

param
source the ImageWriter object which calls this method.
param
imageIndex the index of the image being written.
param
thumbnailIndex the index of the thumbnail being written.

public voidwriteAborted(javax.imageio.ImageWriter source)
Notifies this listener that writing operation has been aborted.

param
source the ImageWriter object which calls this method.