Add missing files from last check-in:
* java/awt/image/ImageConsumer.java: New file. * java/awt/image/ImageProducer.java: New file. * java/awt/image/ImageObserver.java: New file. From-SVN: r35000
This commit is contained in:
parent
1326a48bac
commit
826b480791
4 changed files with 83 additions and 0 deletions
32
libjava/java/awt/image/ImageConsumer.java
Normal file
32
libjava/java/awt/image/ImageConsumer.java
Normal file
|
@ -0,0 +1,32 @@
|
|||
/* 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. */
|
||||
|
||||
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);
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue