Package com.twelvemonkeys.image
Interface BufferedImageFactory.ProgressListener
-
- All Superinterfaces:
java.util.EventListener
- Enclosing class:
- BufferedImageFactory
public static interface BufferedImageFactory.ProgressListener extends java.util.EventListenerThis interface allows clients of aBufferedImageFactoryto receive notifications of decoding progress.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidprogress(BufferedImageFactory factory, float percentage)Reports progress to this listener.
-
-
-
Method Detail
-
progress
void progress(BufferedImageFactory factory, float percentage)
Reports progress to this listener. Invoked by theBufferedImageFactoryto report progress in the image decoding.- Parameters:
factory- the factory reporting the progresspercentage- the percentage of progress
-
-