sub_arctic.output
Class ignore_observer

java.lang.Object
  |
  +--sub_arctic.output.ignore_observer

public class ignore_observer
extends java.lang.Object
implements java.awt.image.ImageObserver

An ImageObserver object which does nothing. This is useful if you know that an image is already loaded and you don't expect any updates (or otherwise wouldn't know what to do with one if you got it).

See Also:
ImageObserver

Constructor Summary
ignore_observer()
          Simple constructor
 
Method Summary
 boolean imageUpdate(java.awt.Image i, int flags, int x, int y, int w, int h)
          Receive (and ignore) updates concerning the progress of loading the image.
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

ignore_observer

public ignore_observer()
Simple constructor
Method Detail

imageUpdate

public boolean imageUpdate(java.awt.Image i,
                           int flags,
                           int x,
                           int y,
                           int w,
                           int h)
Receive (and ignore) updates concerning the progress of loading the image.
Specified by:
imageUpdate in interface java.awt.image.ImageObserver
Parameters:
Image - i the image being ignored.
int - flags indication of image state/progress.
int - x more information about the image.
int - y more information about the image.
int - w more information about the image.
int - h more information about the image.
Returns:
boolean always returns false indicating no additional updates are needed