home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Internet Gallery
/
INTERGAL.bin
/
intergal
/
prgs
/
idv21
/
data.z
/
IndexColorModel.pre
< prev
next >
Wrap
Text File
|
1995-10-08
|
1KB
|
27 lines
import java.awt.image.*;
public class \Name\ extends java.awt.image.IndexColorModel
{
public \Name\ (int ABitCount, int ASize, byte AReds[], byte AGreens[], byte ABlues[])
{
super (ABitCount, ASize, AReds, AGreens, ABlues);
}
public \Name\ (int ABitCount, int ASize, byte AReds[], byte AGreens[], byte ABlues[], int AIndex)
{
super (ABitCount, ASize, AReds, AGreens, ABlues, AIndex);
}
public \Name\ (int ABitCount, int ASize, byte AReds[], byte AGreens[], byte ABlues[], byte AValues[])
{
super (ABitCount, ASize, AReds, AGreens, ABlues, AValues);
}
public \Name\ (int ABitCount, int ASize, byte ACMap[], int AStart, boolean AHashAlpha)
{
super (ABitCount, ASize, ACMap, AStart, AHashAlpha);
}
public \Name\ (int ABitCount, int ASize, byte ACMap[], int AStart, boolean AHashAlpha, int AIndex)
{
super (ABitCount, ASize, ACMap, AStart, AHashAlpha, AIndex);
}
}