Docjar: A Java Source and Docuemnt Enginecom.*    java.*    javax.*    org.*    all    new    plug-in

Quick Search    Search Deep

javax.imageio.event
Interface IIOWriteProgressListener  view IIOWriteProgressListener download IIOWriteProgressListener.java

All Superinterfaces:
java.util.EventListener

public interface IIOWriteProgressListener
extends java.util.EventListener


Method Summary
 void imageComplete(javax.imageio.ImageWriter source)
          Reports that an image write operation has completed.
 void imageProgress(javax.imageio.ImageWriter source, float percentageDone)
          Reports the approximate percentage of completion of an image write operation.
 void imageStarted(javax.imageio.ImageWriter source, int imageIndex)
          Reports that a thumbnail write operation has started.
 void thumbnailComplete(javax.imageio.ImageWriter source)
          Reports that a thumbnail write operation has completed.
 void thumbnailProgress(javax.imageio.ImageWriter source, float percentageDone)
          Reports the approximate percentage of completion of a thumbnail write operation.
 void thumbnailStarted(javax.imageio.ImageWriter source, int imageIndex, int thumnailIndex)
          Reports that a thumbnail write operation is beginning.
 void writeAborted(javax.imageio.ImageWriter source)
          Reports that an image write operation is aborted.
 

Method Detail

imageComplete

public void imageComplete(javax.imageio.ImageWriter source)
Reports that an image write operation has completed.


imageProgress

public void imageProgress(javax.imageio.ImageWriter source,
                          float percentageDone)
Reports the approximate percentage of completion of an image write operation.


imageStarted

public void imageStarted(javax.imageio.ImageWriter source,
                         int imageIndex)
Reports that a thumbnail write operation has started.


thumbnailComplete

public void thumbnailComplete(javax.imageio.ImageWriter source)
Reports that a thumbnail write operation has completed.


thumbnailProgress

public void thumbnailProgress(javax.imageio.ImageWriter source,
                              float percentageDone)
Reports the approximate percentage of completion of a thumbnail write operation.


thumbnailStarted

public void thumbnailStarted(javax.imageio.ImageWriter source,
                             int imageIndex,
                             int thumnailIndex)
Reports that a thumbnail write operation is beginning.


writeAborted

public void writeAborted(javax.imageio.ImageWriter source)
Reports that an image write operation is aborted.