| java.lang.Object org.geotools.image.io.IIOReadProgressAdapter
IIOReadProgressAdapter | public class IIOReadProgressAdapter implements IIOReadProgressListener(Code) | | An abstract adapter class for receiving image progress events.
The methods in this class are empty. This class exists as
convenience for creating listener objects.
since: 2.1 author: Martin Desruisseaux version: $Id: IIOReadProgressAdapter.java 25467 2007-05-08 16:30:30Z desruisseaux $ |
Method Summary | |
public void | imageComplete(ImageReader source) Reports that the current image read operation has completed. | public void | imageProgress(ImageReader source, float percentageDone) Reports the approximate degree of completion of the current
read call of the associated
ImageReader . | public void | imageStarted(ImageReader source, int imageIndex) Reports that an image read operation is beginning. | public void | readAborted(ImageReader source) Reports that a read has been aborted via the reader's
abort method. | public void | sequenceComplete(ImageReader source) Reports that a sequence of read operationshas completed. | public void | sequenceStarted(ImageReader source, int minIndex) Reports that a sequence of read operations is beginning. | public void | thumbnailComplete(ImageReader source) Reports that a thumbnail read operation has completed. | public void | thumbnailProgress(ImageReader source, float percentageDone) Reports the approximate degree of completion of the current
getThumbnail call within the associated
ImageReader . | public void | thumbnailStarted(ImageReader source, int imageIndex, int thumbnailIndex) Reports that a thumbnail read operation is beginning. |
imageComplete | public void imageComplete(ImageReader source)(Code) | | Reports that the current image read operation has completed.
|
imageProgress | public void imageProgress(ImageReader source, float percentageDone)(Code) | | Reports the approximate degree of completion of the current
read call of the associated
ImageReader .
|
imageStarted | public void imageStarted(ImageReader source, int imageIndex)(Code) | | Reports that an image read operation is beginning.
|
readAborted | public void readAborted(ImageReader source)(Code) | | Reports that a read has been aborted via the reader's
abort method.
|
sequenceComplete | public void sequenceComplete(ImageReader source)(Code) | | Reports that a sequence of read operationshas completed.
|
sequenceStarted | public void sequenceStarted(ImageReader source, int minIndex)(Code) | | Reports that a sequence of read operations is beginning.
|
thumbnailComplete | public void thumbnailComplete(ImageReader source)(Code) | | Reports that a thumbnail read operation has completed.
|
thumbnailProgress | public void thumbnailProgress(ImageReader source, float percentageDone)(Code) | | Reports the approximate degree of completion of the current
getThumbnail call within the associated
ImageReader .
|
thumbnailStarted | public void thumbnailStarted(ImageReader source, int imageIndex, int thumbnailIndex)(Code) | | Reports that a thumbnail read operation is beginning.
|
|
|