/[classpath]/classpath/java/awt/image/ImageObserver.java
ViewVC logotype

Diff of /classpath/java/awt/image/ImageObserver.java

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

revision 1.4 by mark, Tue Jan 22 22:26:59 2002 UTC revision 1.5 by mkoch, Sun Oct 12 13:53:39 2003 UTC
# Line 56  public interface ImageObserver Line 56  public interface ImageObserver
56       *       *
57       * @see #imageUpdate       * @see #imageUpdate
58       */       */
59      public static final int WIDTH = 1;      int WIDTH = 1;
60    
61      /**      /**
62       * The height of the image has been provided as the       * The height of the image has been provided as the
# Line 64  public interface ImageObserver Line 64  public interface ImageObserver
64       *       *
65       * @see #imageUpdate       * @see #imageUpdate
66       */       */
67      public static final int HEIGHT = 2;      int HEIGHT = 2;
68    
69      /**      /**
70       * The properties of the image have been provided.       * The properties of the image have been provided.
# Line 72  public interface ImageObserver Line 72  public interface ImageObserver
72       * @see #imageUpdate       * @see #imageUpdate
73       * @see java.awt.Image#getProperty (java.lang.String, java.awt.image.ImageObserver)       * @see java.awt.Image#getProperty (java.lang.String, java.awt.image.ImageObserver)
74       */       */
75      public static final int PROPERTIES = 4;      int PROPERTIES = 4;
76    
77      /**      /**
78       * More pixels are now available for drawing a scaled variation of       * More pixels are now available for drawing a scaled variation of
# Line 80  public interface ImageObserver Line 80  public interface ImageObserver
80       *       *
81       * @see #imageUpdate       * @see #imageUpdate
82       */       */
83      public static final int SOMEBITS = 8;      int SOMEBITS = 8;
84    
85      /**      /**
86       * All the pixels needed to draw a complete frame of a multi-frame       * All the pixels needed to draw a complete frame of a multi-frame
# Line 88  public interface ImageObserver Line 88  public interface ImageObserver
88       *       *
89       * @see #imageUpdate       * @see #imageUpdate
90       */       */
91      public static final int FRAMEBITS = 16;      int FRAMEBITS = 16;
92    
93      /**      /**
94       * An image with a single frame, a static image, is complete.       * An image with a single frame, a static image, is complete.
95       *       *
96       * @see #imageUpdate       * @see #imageUpdate
97       */       */
98      public static final int ALLBITS = 32;      int ALLBITS = 32;
99    
100      /**      /**
101       * An error was encountered while producing the image.       * An error was encountered while producing the image.
102       *       *
103       * @see #imageUpdate       * @see #imageUpdate
104       */       */
105      public static final int ERROR = 64;      int ERROR = 64;
106    
107      /**      /**
108       * Production of the image was aborted.       * Production of the image was aborted.
109       *       *
110       * @see #imageUpdate       * @see #imageUpdate
111       */       */
112      public static final int ABORT = 128;      int ABORT = 128;
113    
114      /**      /**
115       * This is a callback method for an asynchronous image producer to       * This is a callback method for an asynchronous image producer to
# Line 124  public interface ImageObserver Line 124  public interface ImageObserver
124       *       *
125       * @see java.awt.Image       * @see java.awt.Image
126       */       */
127      public abstract boolean imageUpdate(Image image, int flags, int x,      boolean imageUpdate(Image image, int flags, int x,
128                                          int y, int width, int height);                                          int y, int width, int height);
129  }  }

Legend:
Removed from v.1.4  
changed lines
  Added in v.1.5

savannah-hackers-public@gnu.org
ViewVC Help
Powered by ViewVC 1.1.26