From 00f4a3fb56f284ca1d3c6745a124076978c83ee3 Mon Sep 17 00:00:00 2001 From: Michael Koch Date: Sat, 11 Oct 2003 17:19:46 +0000 Subject: 2003-10-11 Michael Koch * 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 From-SVN: r72341 --- libjava/java/awt/image/ImageConsumer.java | 32 +++++++++++++++---------------- 1 file changed, 16 insertions(+), 16 deletions(-) (limited to 'libjava/java/awt/image/ImageConsumer.java') diff --git a/libjava/java/awt/image/ImageConsumer.java b/libjava/java/awt/image/ImageConsumer.java index 25073ff..330f21f 100644 --- a/libjava/java/awt/image/ImageConsumer.java +++ b/libjava/java/awt/image/ImageConsumer.java @@ -54,21 +54,21 @@ public interface ImageConsumer * * @see #setHints */ - public static final int RANDOMPIXELORDER = 1; + int RANDOMPIXELORDER = 1; /** * The pixel order is top-down, left-right. * * @see #setHints */ - public static final int TOPDOWNLEFTRIGHT = 2; + int TOPDOWNLEFTRIGHT = 2; /** * The pixel order is in multiples of complete scanlines. * * @see #setHints */ - public static final int COMPLETESCANLINES = 4; + int COMPLETESCANLINES = 4; /** * The pixels will be delivered in a single pass. There is at @@ -77,7 +77,7 @@ public interface ImageConsumer * @see #setHints * @see #setPixels */ - public static final int SINGLEPASS = 8; + int SINGLEPASS = 8; /** * The pixels will be delivered with multiple calls to @@ -91,35 +91,35 @@ public interface ImageConsumer * @see #setHints * @see #imageComplete */ - public static final int SINGLEFRAME = 16; + int SINGLEFRAME = 16; /** * Indicates an error occurred while producing an image. * * @see #imageComplete */ - public static final int IMAGEERROR = 1; + int IMAGEERROR = 1; /** * A single frame is complete but more will follow. * * @see #imageComplete */ - public static final int SINGLEFRAMEDONE = 2; + int SINGLEFRAMEDONE = 2; /** * The image is complete and no more pixels or frames will follow. * * @see #imageComplete */ - public static final int STATICIMAGEDONE = 3; + int STATICIMAGEDONE = 3; /** * Production of the image has been aborted. * * @see #imageComplete */ - public static final int IMAGEABORTED = 4; + int IMAGEABORTED = 4; /** * An ImageProducer indicates the size of the image @@ -128,7 +128,7 @@ public interface ImageConsumer * @param width the width of the image * @param height the height of the image */ - public abstract void setDimensions(int width, int height); + void setDimensions(int width, int height); /** * An ImageProducer can set a list of properties @@ -136,7 +136,7 @@ public interface ImageConsumer * * @param props the list of properties associated with this image */ - public abstract void setProperties(Hashtable props); + void setProperties(Hashtable props); /** * This ColorModel should indicate the model used by @@ -147,7 +147,7 @@ public interface ImageConsumer * @param model the color model to be used most often by setPixels * @see ColorModel */ - public abstract void setColorModel(ColorModel model); + void setColorModel(ColorModel model); /** * The ImageProducer should call this method with a @@ -157,14 +157,14 @@ public interface ImageConsumer * * @param flags a bit mask of hints */ - public abstract void setHints(int flags); + void setHints(int flags); /** * This function delivers a rectangle of pixels where any * pixel(m,n) is stored in the array as a byte at * index (n * scansize + m + offset). */ - public abstract void setPixels(int x, int y, int w, int h, + void setPixels(int x, int y, int w, int h, ColorModel model, byte[] pixels, int offset, int scansize); /** @@ -172,7 +172,7 @@ public interface ImageConsumer * pixel(m,n) is stored in the array as an int at * index (n * scansize + m + offset). */ - public abstract void setPixels(int x, int y, int w, int h, + void setPixels(int x, int y, int w, int h, ColorModel model, int[] pixels, int offset, int scansize); /** @@ -181,6 +181,6 @@ public interface ImageConsumer * also used to indicate an error in loading or producing the * image. */ - public abstract void imageComplete(int status); + void imageComplete(int status); } -- cgit v1.1