jdk/src/share/classes/java/awt/image/ImageConsumer.java
author erikj
Thu, 07 Jun 2012 18:05:09 -0700
changeset 12813 c10ab96dcf41
parent 5506 202f599c92aa
child 16734 da1901d79073
permissions -rw-r--r--
7170969: Add @GenerateNativeHeader to classes whose fields need to be exported for JNI Reviewed-by: ohair, ohrstrom, ihse
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
     1
/*
5506
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 2
diff changeset
     2
 * Copyright (c) 1995, 2006, Oracle and/or its affiliates. All rights reserved.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
     3
 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
90ce3da70b43 Initial load
duke
parents:
diff changeset
     4
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
     5
 * This code is free software; you can redistribute it and/or modify it
90ce3da70b43 Initial load
duke
parents:
diff changeset
     6
 * under the terms of the GNU General Public License version 2 only, as
5506
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 2
diff changeset
     7
 * published by the Free Software Foundation.  Oracle designates this
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
     8
 * particular file as subject to the "Classpath" exception as provided
5506
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 2
diff changeset
     9
 * by Oracle in the LICENSE file that accompanied this code.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    10
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    11
 * This code is distributed in the hope that it will be useful, but WITHOUT
90ce3da70b43 Initial load
duke
parents:
diff changeset
    12
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
90ce3da70b43 Initial load
duke
parents:
diff changeset
    13
 * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
90ce3da70b43 Initial load
duke
parents:
diff changeset
    14
 * version 2 for more details (a copy is included in the LICENSE file that
90ce3da70b43 Initial load
duke
parents:
diff changeset
    15
 * accompanied this code).
90ce3da70b43 Initial load
duke
parents:
diff changeset
    16
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    17
 * You should have received a copy of the GNU General Public License version
90ce3da70b43 Initial load
duke
parents:
diff changeset
    18
 * 2 along with this work; if not, write to the Free Software Foundation,
90ce3da70b43 Initial load
duke
parents:
diff changeset
    19
 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    20
 *
5506
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 2
diff changeset
    21
 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 2
diff changeset
    22
 * or visit www.oracle.com if you need additional information or have any
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 2
diff changeset
    23
 * questions.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    24
 */
90ce3da70b43 Initial load
duke
parents:
diff changeset
    25
90ce3da70b43 Initial load
duke
parents:
diff changeset
    26
package java.awt.image;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    27
90ce3da70b43 Initial load
duke
parents:
diff changeset
    28
import java.util.Hashtable;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    29
12813
c10ab96dcf41 7170969: Add @GenerateNativeHeader to classes whose fields need to be exported for JNI
erikj
parents: 5506
diff changeset
    30
import javax.tools.annotation.GenerateNativeHeader;
c10ab96dcf41 7170969: Add @GenerateNativeHeader to classes whose fields need to be exported for JNI
erikj
parents: 5506
diff changeset
    31
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    32
/**
90ce3da70b43 Initial load
duke
parents:
diff changeset
    33
 * The interface for objects expressing interest in image data through
90ce3da70b43 Initial load
duke
parents:
diff changeset
    34
 * the ImageProducer interfaces.  When a consumer is added to an image
90ce3da70b43 Initial load
duke
parents:
diff changeset
    35
 * producer, the producer delivers all of the data about the image
90ce3da70b43 Initial load
duke
parents:
diff changeset
    36
 * using the method calls defined in this interface.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    37
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    38
 * @see ImageProducer
90ce3da70b43 Initial load
duke
parents:
diff changeset
    39
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    40
 * @author      Jim Graham
90ce3da70b43 Initial load
duke
parents:
diff changeset
    41
 */
12813
c10ab96dcf41 7170969: Add @GenerateNativeHeader to classes whose fields need to be exported for JNI
erikj
parents: 5506
diff changeset
    42
/* No native methods here, but the constants are needed in the supporting JNI code */
c10ab96dcf41 7170969: Add @GenerateNativeHeader to classes whose fields need to be exported for JNI
erikj
parents: 5506
diff changeset
    43
@GenerateNativeHeader
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    44
public interface ImageConsumer {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    45
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
    46
     * The dimensions of the source image are reported using the
90ce3da70b43 Initial load
duke
parents:
diff changeset
    47
     * setDimensions method call.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    48
     * @param width the width of the source image
90ce3da70b43 Initial load
duke
parents:
diff changeset
    49
     * @param height the height of the source image
90ce3da70b43 Initial load
duke
parents:
diff changeset
    50
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
    51
    void setDimensions(int width, int height);
90ce3da70b43 Initial load
duke
parents:
diff changeset
    52
90ce3da70b43 Initial load
duke
parents:
diff changeset
    53
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
    54
     * Sets the extensible list of properties associated with this image.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    55
     * @param props the list of properties to be associated with this
90ce3da70b43 Initial load
duke
parents:
diff changeset
    56
     *        image
90ce3da70b43 Initial load
duke
parents:
diff changeset
    57
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
    58
    void setProperties(Hashtable<?,?> props);
90ce3da70b43 Initial load
duke
parents:
diff changeset
    59
90ce3da70b43 Initial load
duke
parents:
diff changeset
    60
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
    61
     * Sets the ColorModel object used for the majority of
90ce3da70b43 Initial load
duke
parents:
diff changeset
    62
     * the pixels reported using the setPixels method
90ce3da70b43 Initial load
duke
parents:
diff changeset
    63
     * calls.  Note that each set of pixels delivered using setPixels
90ce3da70b43 Initial load
duke
parents:
diff changeset
    64
     * contains its own ColorModel object, so no assumption should
90ce3da70b43 Initial load
duke
parents:
diff changeset
    65
     * be made that this model will be the only one used in delivering
90ce3da70b43 Initial load
duke
parents:
diff changeset
    66
     * pixel values.  A notable case where multiple ColorModel objects
90ce3da70b43 Initial load
duke
parents:
diff changeset
    67
     * may be seen is a filtered image when for each set of pixels
90ce3da70b43 Initial load
duke
parents:
diff changeset
    68
     * that it filters, the filter
90ce3da70b43 Initial load
duke
parents:
diff changeset
    69
     * determines  whether the
90ce3da70b43 Initial load
duke
parents:
diff changeset
    70
     * pixels can be sent on untouched, using the original ColorModel,
90ce3da70b43 Initial load
duke
parents:
diff changeset
    71
     * or whether the pixels should be modified (filtered) and passed
90ce3da70b43 Initial load
duke
parents:
diff changeset
    72
     * on using a ColorModel more convenient for the filtering process.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    73
     * @param model the specified <code>ColorModel</code>
90ce3da70b43 Initial load
duke
parents:
diff changeset
    74
     * @see ColorModel
90ce3da70b43 Initial load
duke
parents:
diff changeset
    75
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
    76
    void setColorModel(ColorModel model);
90ce3da70b43 Initial load
duke
parents:
diff changeset
    77
90ce3da70b43 Initial load
duke
parents:
diff changeset
    78
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
    79
     * Sets the hints that the ImageConsumer uses to process the
90ce3da70b43 Initial load
duke
parents:
diff changeset
    80
     * pixels delivered by the ImageProducer.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    81
     * The ImageProducer can deliver the pixels in any order, but
90ce3da70b43 Initial load
duke
parents:
diff changeset
    82
     * the ImageConsumer may be able to scale or convert the pixels
90ce3da70b43 Initial load
duke
parents:
diff changeset
    83
     * to the destination ColorModel more efficiently or with higher
90ce3da70b43 Initial load
duke
parents:
diff changeset
    84
     * quality if it knows some information about how the pixels will
90ce3da70b43 Initial load
duke
parents:
diff changeset
    85
     * be delivered up front.  The setHints method should be called
90ce3da70b43 Initial load
duke
parents:
diff changeset
    86
     * before any calls to any of the setPixels methods with a bit mask
90ce3da70b43 Initial load
duke
parents:
diff changeset
    87
     * of hints about the manner in which the pixels will be delivered.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    88
     * If the ImageProducer does not follow the guidelines for the
90ce3da70b43 Initial load
duke
parents:
diff changeset
    89
     * indicated hint, the results are undefined.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    90
     * @param hintflags a set of hints that the ImageConsumer uses to
90ce3da70b43 Initial load
duke
parents:
diff changeset
    91
     *        process the pixels
90ce3da70b43 Initial load
duke
parents:
diff changeset
    92
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
    93
    void setHints(int hintflags);
90ce3da70b43 Initial load
duke
parents:
diff changeset
    94
90ce3da70b43 Initial load
duke
parents:
diff changeset
    95
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
    96
     * The pixels will be delivered in a random order.  This tells the
90ce3da70b43 Initial load
duke
parents:
diff changeset
    97
     * ImageConsumer not to use any optimizations that depend on the
90ce3da70b43 Initial load
duke
parents:
diff changeset
    98
     * order of pixel delivery, which should be the default assumption
90ce3da70b43 Initial load
duke
parents:
diff changeset
    99
     * in the absence of any call to the setHints method.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   100
     * @see #setHints
90ce3da70b43 Initial load
duke
parents:
diff changeset
   101
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   102
    int RANDOMPIXELORDER = 1;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   103
90ce3da70b43 Initial load
duke
parents:
diff changeset
   104
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   105
     * The pixels will be delivered in top-down, left-to-right order.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   106
     * @see #setHints
90ce3da70b43 Initial load
duke
parents:
diff changeset
   107
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   108
    int TOPDOWNLEFTRIGHT = 2;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   109
90ce3da70b43 Initial load
duke
parents:
diff changeset
   110
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   111
     * The pixels will be delivered in (multiples of) complete scanlines
90ce3da70b43 Initial load
duke
parents:
diff changeset
   112
     * at a time.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   113
     * @see #setHints
90ce3da70b43 Initial load
duke
parents:
diff changeset
   114
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   115
    int COMPLETESCANLINES = 4;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   116
90ce3da70b43 Initial load
duke
parents:
diff changeset
   117
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   118
     * The pixels will be delivered in a single pass.  Each pixel will
90ce3da70b43 Initial load
duke
parents:
diff changeset
   119
     * appear in only one call to any of the setPixels methods.  An
90ce3da70b43 Initial load
duke
parents:
diff changeset
   120
     * example of an image format which does not meet this criterion
90ce3da70b43 Initial load
duke
parents:
diff changeset
   121
     * is a progressive JPEG image which defines pixels in multiple
90ce3da70b43 Initial load
duke
parents:
diff changeset
   122
     * passes, each more refined than the previous.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   123
     * @see #setHints
90ce3da70b43 Initial load
duke
parents:
diff changeset
   124
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   125
    int SINGLEPASS = 8;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   126
90ce3da70b43 Initial load
duke
parents:
diff changeset
   127
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   128
     * The image contain a single static image.  The pixels will be defined
90ce3da70b43 Initial load
duke
parents:
diff changeset
   129
     * in calls to the setPixels methods and then the imageComplete method
90ce3da70b43 Initial load
duke
parents:
diff changeset
   130
     * will be called with the STATICIMAGEDONE flag after which no more
90ce3da70b43 Initial load
duke
parents:
diff changeset
   131
     * image data will be delivered.  An example of an image type which
90ce3da70b43 Initial load
duke
parents:
diff changeset
   132
     * would not meet these criteria would be the output of a video feed,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   133
     * or the representation of a 3D rendering being manipulated
90ce3da70b43 Initial load
duke
parents:
diff changeset
   134
     * by the user.  The end of each frame in those types of images will
90ce3da70b43 Initial load
duke
parents:
diff changeset
   135
     * be indicated by calling imageComplete with the SINGLEFRAMEDONE flag.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   136
     * @see #setHints
90ce3da70b43 Initial load
duke
parents:
diff changeset
   137
     * @see #imageComplete
90ce3da70b43 Initial load
duke
parents:
diff changeset
   138
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   139
    int SINGLEFRAME = 16;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   140
90ce3da70b43 Initial load
duke
parents:
diff changeset
   141
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   142
     * Delivers the pixels of the image with one or more calls
90ce3da70b43 Initial load
duke
parents:
diff changeset
   143
     * to this method.  Each call specifies the location and
90ce3da70b43 Initial load
duke
parents:
diff changeset
   144
     * size of the rectangle of source pixels that are contained in
90ce3da70b43 Initial load
duke
parents:
diff changeset
   145
     * the array of pixels.  The specified ColorModel object should
90ce3da70b43 Initial load
duke
parents:
diff changeset
   146
     * be used to convert the pixels into their corresponding color
90ce3da70b43 Initial load
duke
parents:
diff changeset
   147
     * and alpha components.  Pixel (m,n) is stored in the pixels array
90ce3da70b43 Initial load
duke
parents:
diff changeset
   148
     * at index (n * scansize + m + off).  The pixels delivered using
90ce3da70b43 Initial load
duke
parents:
diff changeset
   149
     * this method are all stored as bytes.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   150
     * @param x the X coordinate of the upper-left corner of the
90ce3da70b43 Initial load
duke
parents:
diff changeset
   151
     *        area of pixels to be set
90ce3da70b43 Initial load
duke
parents:
diff changeset
   152
     * @param y the Y coordinate of the upper-left corner of the
90ce3da70b43 Initial load
duke
parents:
diff changeset
   153
     *        area of pixels to be set
90ce3da70b43 Initial load
duke
parents:
diff changeset
   154
     * @param w the width of the area of pixels
90ce3da70b43 Initial load
duke
parents:
diff changeset
   155
     * @param h the height of the area of pixels
90ce3da70b43 Initial load
duke
parents:
diff changeset
   156
     * @param model the specified <code>ColorModel</code>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   157
     * @param pixels the array of pixels
90ce3da70b43 Initial load
duke
parents:
diff changeset
   158
     * @param off the offset into the <code>pixels</code> array
90ce3da70b43 Initial load
duke
parents:
diff changeset
   159
     * @param scansize the distance from one row of pixels to the next in
90ce3da70b43 Initial load
duke
parents:
diff changeset
   160
     * the <code>pixels</code> array
90ce3da70b43 Initial load
duke
parents:
diff changeset
   161
     * @see ColorModel
90ce3da70b43 Initial load
duke
parents:
diff changeset
   162
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   163
    void setPixels(int x, int y, int w, int h,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   164
                   ColorModel model, byte pixels[], int off, int scansize);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   165
90ce3da70b43 Initial load
duke
parents:
diff changeset
   166
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   167
     * The pixels of the image are delivered using one or more calls
90ce3da70b43 Initial load
duke
parents:
diff changeset
   168
     * to the setPixels method.  Each call specifies the location and
90ce3da70b43 Initial load
duke
parents:
diff changeset
   169
     * size of the rectangle of source pixels that are contained in
90ce3da70b43 Initial load
duke
parents:
diff changeset
   170
     * the array of pixels.  The specified ColorModel object should
90ce3da70b43 Initial load
duke
parents:
diff changeset
   171
     * be used to convert the pixels into their corresponding color
90ce3da70b43 Initial load
duke
parents:
diff changeset
   172
     * and alpha components.  Pixel (m,n) is stored in the pixels array
90ce3da70b43 Initial load
duke
parents:
diff changeset
   173
     * at index (n * scansize + m + off).  The pixels delivered using
90ce3da70b43 Initial load
duke
parents:
diff changeset
   174
     * this method are all stored as ints.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   175
     * this method are all stored as ints.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   176
     * @param x the X coordinate of the upper-left corner of the
90ce3da70b43 Initial load
duke
parents:
diff changeset
   177
     *        area of pixels to be set
90ce3da70b43 Initial load
duke
parents:
diff changeset
   178
     * @param y the Y coordinate of the upper-left corner of the
90ce3da70b43 Initial load
duke
parents:
diff changeset
   179
     *        area of pixels to be set
90ce3da70b43 Initial load
duke
parents:
diff changeset
   180
     * @param w the width of the area of pixels
90ce3da70b43 Initial load
duke
parents:
diff changeset
   181
     * @param h the height of the area of pixels
90ce3da70b43 Initial load
duke
parents:
diff changeset
   182
     * @param model the specified <code>ColorModel</code>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   183
     * @param pixels the array of pixels
90ce3da70b43 Initial load
duke
parents:
diff changeset
   184
     * @param off the offset into the <code>pixels</code> array
90ce3da70b43 Initial load
duke
parents:
diff changeset
   185
     * @param scansize the distance from one row of pixels to the next in
90ce3da70b43 Initial load
duke
parents:
diff changeset
   186
     * the <code>pixels</code> array
90ce3da70b43 Initial load
duke
parents:
diff changeset
   187
     * @see ColorModel
90ce3da70b43 Initial load
duke
parents:
diff changeset
   188
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   189
    void setPixels(int x, int y, int w, int h,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   190
                   ColorModel model, int pixels[], int off, int scansize);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   191
90ce3da70b43 Initial load
duke
parents:
diff changeset
   192
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   193
     * The imageComplete method is called when the ImageProducer is
90ce3da70b43 Initial load
duke
parents:
diff changeset
   194
     * finished delivering all of the pixels that the source image
90ce3da70b43 Initial load
duke
parents:
diff changeset
   195
     * contains, or when a single frame of a multi-frame animation has
90ce3da70b43 Initial load
duke
parents:
diff changeset
   196
     * been completed, or when an error in loading or producing the
90ce3da70b43 Initial load
duke
parents:
diff changeset
   197
     * image has occured.  The ImageConsumer should remove itself from the
90ce3da70b43 Initial load
duke
parents:
diff changeset
   198
     * list of consumers registered with the ImageProducer at this time,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   199
     * unless it is interested in successive frames.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   200
     * @param status the status of image loading
90ce3da70b43 Initial load
duke
parents:
diff changeset
   201
     * @see ImageProducer#removeConsumer
90ce3da70b43 Initial load
duke
parents:
diff changeset
   202
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   203
    void imageComplete(int status);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   204
90ce3da70b43 Initial load
duke
parents:
diff changeset
   205
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   206
     * An error was encountered while producing the image.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   207
     * @see #imageComplete
90ce3da70b43 Initial load
duke
parents:
diff changeset
   208
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   209
    int IMAGEERROR = 1;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   210
90ce3da70b43 Initial load
duke
parents:
diff changeset
   211
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   212
     * One frame of the image is complete but there are more frames
90ce3da70b43 Initial load
duke
parents:
diff changeset
   213
     * to be delivered.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   214
     * @see #imageComplete
90ce3da70b43 Initial load
duke
parents:
diff changeset
   215
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   216
    int SINGLEFRAMEDONE = 2;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   217
90ce3da70b43 Initial load
duke
parents:
diff changeset
   218
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   219
     * The image is complete and there are no more pixels or frames
90ce3da70b43 Initial load
duke
parents:
diff changeset
   220
     * to be delivered.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   221
     * @see #imageComplete
90ce3da70b43 Initial load
duke
parents:
diff changeset
   222
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   223
    int STATICIMAGEDONE = 3;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   224
90ce3da70b43 Initial load
duke
parents:
diff changeset
   225
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   226
     * The image creation process was deliberately aborted.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   227
     * @see #imageComplete
90ce3da70b43 Initial load
duke
parents:
diff changeset
   228
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   229
    int IMAGEABORTED = 4;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   230
}