aboutsummaryrefslogtreecommitdiff
path: root/libjava/java/awt/image/ImageConsumer.java
diff options
context:
space:
mode:
Diffstat (limited to 'libjava/java/awt/image/ImageConsumer.java')
-rw-r--r--libjava/java/awt/image/ImageConsumer.java36
1 files changed, 0 insertions, 36 deletions
diff --git a/libjava/java/awt/image/ImageConsumer.java b/libjava/java/awt/image/ImageConsumer.java
deleted file mode 100644
index 37214d7b769..00000000000
--- a/libjava/java/awt/image/ImageConsumer.java
+++ /dev/null
@@ -1,36 +0,0 @@
-/* Copyright (C) 2000 Free Software Foundation
-
- This file is part of libgcj.
-
-This software is copyrighted work licensed under the terms of the
-Libgcj License. Please consult the file "LIBGCJ_LICENSE" for
-details. */
-
-package java.awt.image;
-import java.util.Hashtable;
-import java.awt.ColorModel;
-
-public interface ImageConsumer
-{
-
- public static final int RANDOMPIXELORDER = 1 << 0,
- TOPDOWNLEFTRIGHT = 1 << 1,
- COMPLETESCANLINES = 1 << 2,
- SINGLEPASS = 1 << 3,
- SINGLEFRAME = 1 << 4;
-
- public static final int IMAGEERROR = 1,
- SINGLEFRAMEDONE = 2,
- STATICIMAGEDONE = 3,
- IMAGEABORTED = 4;
-
- public void setDimensions(int width, int height);
- public void setProperties(Hashtable props);
- public void setColorModel(ColorModel model);
- public void setHints(int hintflags);
- public void setPixels(int x, int y, int w, int h, ColorModel model,
- byte[] pixels, int off, int scansize);
- public void setPixels(int x, int y, int w, int h, ColorModel model,
- int[] pixels, int off, int scansize);
- public void imageComplete(int status);
-}