home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Internet Gallery
/
INTERGAL.bin
/
intergal
/
prgs
/
idv21
/
data.z
/
MemoryImageSource.pre
< prev
next >
Wrap
Text File
|
1995-10-08
|
1KB
|
31 lines
import java.awt.image.*;
import java.util.*;
public class \Name\ extends java.awt.image.MemoryImageSource
{
public \Name\ (int AWidth, int AHeight, ColorModel AModel, byte APixels[], int AOffset, int AScan)
{
super (AWidth, AHeight, AModel, APixels, AOffset, AScan);
}
public \Name\ (int AWidth, int AHeight, ColorModel AModel, byte APixels[], int AOffset, int AScan, Hashtable ATable)
{
super (AWidth, AHeight, AModel, APixels, AOffset, AScan, ATable);
}
public \Name\ (int AWidth, int AHeight, ColorModel AModel, int APixels[], int AOffset, int AScan)
{
super (AWidth, AHeight, AModel, APixels, AOffset, AScan);
}
public \Name\ (int AWidth, int AHeight, ColorModel AModel, int APixels[], int AOffset, int AScan, Hashtable ATable)
{
super (AWidth, AHeight, AModel, APixels, AOffset, AScan, ATable);
}
public \Name\ (int AWidth, int AHeight, int APixels[], int AOffset, int AScan)
{
super (AWidth, AHeight, APixels, AOffset, AScan);
}
public \Name\ (int AWidth, int AHeight, int APixels[], int AOffset, int AScan, Hashtable ATable)
{
super (AWidth, AHeight, APixels, AOffset, AScan, ATable);
}
}