All Downloads are FREE. Search and download functionalities are using the official Maven repository.

java.awt.image.ImageObserver Maven / Gradle / Ivy

Go to download

JVM AOT compiler currently generating JavaScript, C++, Haxe, with initial focus on Kotlin and games.

There is a newer version: 0.6.8
Show newest version
package java.awt.image;

import java.awt.*;

public interface ImageObserver {
	public boolean imageUpdate(Image img, int infoflags, int x, int y, int width, int height);

	public static final int WIDTH = 1;
	public static final int HEIGHT = 2;
	public static final int PROPERTIES = 4;
	public static final int SOMEBITS = 8;
	public static final int FRAMEBITS = 16;
	public static final int ALLBITS = 32;
	public static final int ERROR = 64;
	public static final int ABORT = 128;
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy