FileDocCategorySizeDatePackage
MyObserver.javaAPI DocExample796Sat Apr 23 22:35:40 BST 2005None

MyObserver

public class MyObserver extends Object implements ImageObserver

Fields Summary
Constructors Summary
Methods Summary
public booleanimageUpdate(java.awt.Image image, int flags, int x, int y, int width, int height)


    if ( (flags & HEIGHT) !=0 )
      System.out.println("Image height = " + height );

    if ( (flags & WIDTH ) !=0 )
      System.out.println("Image width = " + width );

    if ( (flags & FRAMEBITS) != 0 )
      System.out.println("Another frame finished.");

    if ( (flags & SOMEBITS) != 0 )
      System.out.println("Image section :"
             + new Rectangle( x, y, width, height ) );

    if ( (flags & ALLBITS) != 0 )
      System.out.println("Image finished!");

    if ( (flags & ABORT) != 0 ) 
      System.out.println("Image load aborted...");

    return true;