diff options
| author | mkoch <mkoch@138bc75d-0d04-0410-961f-82ee72b054a4> | 2003-10-11 17:19:46 +0000 |
|---|---|---|
| committer | mkoch <mkoch@138bc75d-0d04-0410-961f-82ee72b054a4> | 2003-10-11 17:19:46 +0000 |
| commit | bc348f010d70a1c6abd4c9f17903ea7b64e6124f (patch) | |
| tree | bacec23b96c272c8919e500e99e363359f431a4d /libjava/java/awt/image/ImageObserver.java | |
| parent | d1450f2715be1403f6fe85d96ccd750202448f1c (diff) | |
| download | gcc-bc348f010d70a1c6abd4c9f17903ea7b64e6124f.tar.gz | |
2003-10-11 Michael Koch <konqueror@gmx.de>
* java/awt/ActiveEvent.java
* java/awt/datatransfer/ClipboardOwner.java
* java/awt/datatransfer/FlavorMap.java
* java/awt/datatransfer/Transferable.java
* java/awt/dnd/Autoscroll.java
* java/awt/dnd/peer/DragSourceContextPeer.java
* java/awt/dnd/peer/DropTargetContextPeer.java
* java/awt/dnd/peer/DropTargetPeer.java
* java/awt/font/MultipleMaster.java
* java/awt/font/OpenType.java
* java/awt/im/spi/InputMethodDescriptor.java
* java/awt/image/ImageObserver.java
* java/awt/image/ImageConsumer.java
* java/awt/image/ImageProducer.java
* java/awt/image/RGBImageFilter.java
* java/awt/image/RasterOp.java
* java/awt/image/renderable/RenderableImage.java
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@72341 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'libjava/java/awt/image/ImageObserver.java')
| -rw-r--r-- | libjava/java/awt/image/ImageObserver.java | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/libjava/java/awt/image/ImageObserver.java b/libjava/java/awt/image/ImageObserver.java index 6c4673e216e..738e08a1f53 100644 --- a/libjava/java/awt/image/ImageObserver.java +++ b/libjava/java/awt/image/ImageObserver.java @@ -56,7 +56,7 @@ public interface ImageObserver * * @see #imageUpdate */ - public static final int WIDTH = 1; + int WIDTH = 1; /** * The height of the image has been provided as the @@ -64,7 +64,7 @@ public interface ImageObserver * * @see #imageUpdate */ - public static final int HEIGHT = 2; + int HEIGHT = 2; /** * The properties of the image have been provided. @@ -72,7 +72,7 @@ public interface ImageObserver * @see #imageUpdate * @see java.awt.Image#getProperty (java.lang.String, java.awt.image.ImageObserver) */ - public static final int PROPERTIES = 4; + int PROPERTIES = 4; /** * More pixels are now available for drawing a scaled variation of @@ -80,7 +80,7 @@ public interface ImageObserver * * @see #imageUpdate */ - public static final int SOMEBITS = 8; + int SOMEBITS = 8; /** * All the pixels needed to draw a complete frame of a multi-frame @@ -88,28 +88,28 @@ public interface ImageObserver * * @see #imageUpdate */ - public static final int FRAMEBITS = 16; + int FRAMEBITS = 16; /** * An image with a single frame, a static image, is complete. * * @see #imageUpdate */ - public static final int ALLBITS = 32; + int ALLBITS = 32; /** * An error was encountered while producing the image. * * @see #imageUpdate */ - public static final int ERROR = 64; + int ERROR = 64; /** * Production of the image was aborted. * * @see #imageUpdate */ - public static final int ABORT = 128; + int ABORT = 128; /** * This is a callback method for an asynchronous image producer to @@ -124,6 +124,6 @@ public interface ImageObserver * * @see java.awt.Image */ - public abstract boolean imageUpdate(Image image, int flags, int x, + boolean imageUpdate(Image image, int flags, int x, int y, int width, int height); } |
