< prev index next >

src/java.desktop/share/classes/sun/awt/image/ImageFetchable.java

Print this page

        

@@ -31,18 +31,18 @@
  * method from one of a pool of threads which are created to facilitate
  * asynchronous delivery of image data outside of the standard system
  * threads which manage the applications User Interface.
  *
  * @see ImageFetcher
- * @see ImageProducer
+ * @see java.awt.image.ImageProducer
  *
  * @author      Jim Graham
  */
 public interface ImageFetchable {
     /**
      * This method is called by one of the ImageFetcher threads to start
      * the flow of information from the ImageProducer to the ImageConsumer.
      * @see ImageFetcher
-     * @see ImageProducer
+     * @see java.awt.image.ImageProducer
      */
     public void doFetch();
 }
< prev index next >