API Overview API Index Package Overview Direct link to this page
JDK 1.6
  java.awt.image. ImageObserver View Source
Author(s)
Jim Graham
Since
Version
1.28 11/17/05
Serial
Hierarchy
 ImageObserver
Subinterfaces
Description
public interface ImageObserver
An asynchronous update interface for receiving notifications about Image information as the Image is constructed.
See also:   
Methods
Hide/Show inherited methods
public boolean imageUpdate (Image img, int infoflags, int x, int y, int width, int height)
  This method is called when information about an image which was previously requested using an asynchronous interface becomes available.
Fields
Hide/Show inherited fields
publicfinalstatic int ABORT = "128"
  This flag in the infoflags argument to imageUpdate indicates that an image which was being tracked asynchronously was aborted before production was complete.
publicfinalstatic int ALLBITS = "32"
  This flag in the infoflags argument to imageUpdate indicates that a static image which was previously drawn is now complete and can be drawn again in its final form.
publicfinalstatic int ERROR = "64"
  This flag in the infoflags argument to imageUpdate indicates that an image which was being tracked asynchronously has encountered an error.
publicfinalstatic int FRAMEBITS = "16"
  This flag in the infoflags argument to imageUpdate indicates that another complete frame of a multi-frame image which was previously drawn is now available to be drawn again.
publicfinalstatic int HEIGHT = "2"
  This flag in the infoflags argument to imageUpdate indicates that the height of the base image is now available and can be taken from the height argument to the imageUpdate callback method.
publicfinalstatic int PROPERTIES = "4"
  This flag in the infoflags argument to imageUpdate indicates that the properties of the image are now available.
publicfinalstatic int SOMEBITS = "8"
  This flag in the infoflags argument to imageUpdate indicates that more pixels needed for drawing a scaled variation of the image are available.
publicfinalstatic int WIDTH = "1"
  This flag in the infoflags argument to imageUpdate indicates that the width of the base image is now available and can be taken from the width argument to the imageUpdate callback method.
Generated By: JavaOnTracks Doclet 0.1.4     ©Thibaut Colar