Package com.sun.pdfview.decode
Class MyTracker
- java.lang.Object
-
- com.sun.pdfview.decode.MyTracker
-
- All Implemented Interfaces:
java.awt.image.ImageObserver
class MyTracker extends java.lang.Object implements java.awt.image.ImageObserver
Image tracker. I'm not sure why I'm not using the default Java image tracker for this one.
-
-
Field Summary
Fields Modifier and Type Field Description (package private) boolean
done
-
Constructor Summary
Constructors Constructor Description MyTracker(java.awt.Image img)
create a new MyTracker that watches this image.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description boolean
imageUpdate(java.awt.Image img, int infoflags, int x, int y, int width, int height)
More information has come in about the image.void
waitForAll()
Wait until the image is done, then return.
-
-
-
Method Detail
-
imageUpdate
public boolean imageUpdate(java.awt.Image img, int infoflags, int x, int y, int width, int height)
More information has come in about the image.- Specified by:
imageUpdate
in interfacejava.awt.image.ImageObserver
-
waitForAll
public void waitForAll()
Wait until the image is done, then return.
-
-