java.awt.image.ImageObserver (JDK 1.0)
This interface defines a method and associated constants used by classes that want to receive information asynchronously about the status of an image. Many methods that query information about an image take an ImageObserver as an argument. If the specified information is not available when requested, it is passed to the ImageObserver when it becomes available. Component implements this interface, and components are the most commonly used image observers.
public abstract interfaceImageObserver{ //Constantspublic static final intABORT; public static final intALLBITS; public static final intERROR; public static final intFRAMEBITS; public static final intHEIGHT; public static final intPROPERTIES; public static final intSOMEBITS; public static final intWIDTH; //Public Instance Methodspublic abstract booleanimageUpdate(Imageimg, intinfoflags, intx, inty, intwidth, intheight); }
Implemented By:
Component
Passed To:
Component.checkImage(), Component.prepareImage(), ComponentPeer.checkImage(), ComponentPeer.prepareImage(), Graphics.drawImage(), Image.getHeight(), Image.getProperty(), Image.getWidth(), Toolkit.checkImage(), Toolkit.prepareImage()