home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Internet Gallery
/
INTERGAL.bin
/
intergal
/
prgs
/
idv21
/
data.z
/
PixelGrabber.pre
< prev
next >
Wrap
Text File
|
1995-10-08
|
585b
|
15 lines
import java.awt.*;
import java.awt.image.*;
public class \Name\ extends java.awt.image.PixelGrabber
{
public \Name\ (Image AImage, int ALeft, int ATop, int AWidth, int AHeight, int APixels[], int AOffset, int AScanSize)
{
super (AImage, ALeft, ATop, AWidth, AHeight, APixels, AOffset, AScanSize);
}
public \Name\ (ImageProducer AImageProducer, int ALeft, int ATop, int AWidth, int AHeight, int APixels[], int AOffset, int AScanSize)
{
super (AImageProducer, ALeft, ATop, AWidth, AHeight, APixels, AOffset, AScanSize);
}
}