jdk/src/share/classes/java/awt/image/ImageProducer.java
changeset 19169 1807a84c3d63
parent 5506 202f599c92aa
child 23010 6dadb192ad81
equal deleted inserted replaced
19168:ff364494f2b8 19169:1807a84c3d63
    98      * ignore this call if it cannot resend the data in that
    98      * ignore this call if it cannot resend the data in that
    99      * order.  If the data can be resent, the
    99      * order.  If the data can be resent, the
   100      * <code>ImageProducer</code> should respond by executing
   100      * <code>ImageProducer</code> should respond by executing
   101      * the following minimum set of <code>ImageConsumer</code>
   101      * the following minimum set of <code>ImageConsumer</code>
   102      * method calls:
   102      * method calls:
   103      * <pre>
   103      * <pre>{@code
   104      *  ic.setHints(TOPDOWNLEFTRIGHT | < otherhints >);
   104      *  ic.setHints(TOPDOWNLEFTRIGHT | < otherhints >);
   105      *  ic.setPixels(...);      // As many times as needed
   105      *  ic.setPixels(...);      // As many times as needed
   106      *  ic.imageComplete();
   106      *  ic.imageComplete();
   107      * </pre>
   107      * }</pre>
   108      * @param ic the specified <code>ImageConsumer</code>
   108      * @param ic the specified <code>ImageConsumer</code>
   109      * @see ImageConsumer#setHints
   109      * @see ImageConsumer#setHints
   110      */
   110      */
   111     public void requestTopDownLeftRightResend(ImageConsumer ic);
   111     public void requestTopDownLeftRightResend(ImageConsumer ic);
   112 }
   112 }