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

From-SVN: r72341
This commit is contained in:
Michael Koch 2003-10-11 17:19:46 +00:00 committed by Michael Koch
parent b46f35f3a8
commit 00f4a3fb56
18 changed files with 119 additions and 92 deletions

View file

@ -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);
}