com.objex.panywhere
Interface ImageListener

All Superinterfaces:
java.util.EventListener

public interface ImageListener
extends java.util.EventListener

Classes that need to register for and listen for Pedigree Image events must implement this Interface. Image events are generated each time an image of the current Pedigree is requested and then generated


Method Summary
 void imageFailed(ImageEvent event)
          Invoked when the generation of an has been aborted or failed for one reason or another.
 void imageGenerated(ImageEvent event)
          Invoked when an Image of the pedigree has been generated and is available
 void imageLoading(ImageEvent event)
          Invoked when the generation of an Image has been commenced but not yet finished.
 

Method Detail

imageGenerated

void imageGenerated(ImageEvent event)
Invoked when an Image of the pedigree has been generated and is available


imageLoading

void imageLoading(ImageEvent event)
Invoked when the generation of an Image has been commenced but not yet finished. Implement this method if you want to do something while the image is being generated


imageFailed

void imageFailed(ImageEvent event)
Invoked when the generation of an has been aborted or failed for one reason or another. Implement this method if you want the system to do something when the generation of the image failed.