home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Internet Gallery
/
INTERGAL.bin
/
intergal
/
prgs
/
idv21
/
data.z
/
ColorModel.pre
< prev
next >
Wrap
Text File
|
1995-10-08
|
571b
|
30 lines
import java.awt.image.*;
public class \Name\ extends java.awt.image.ColorModel
{
public \Name\ (int ABitCount)
{
super (ABitCount);
}
public int getRed (int pixel)
{
//Add your code here
return 0;
}
public int getGreen (int pixel)
{
//Add your code here
return 0;
}
public int getBlue (int pixel)
{
//Add your code here
return 0;
}
public int getAlpha (int pixel)
{
//Add your code here
return 0;
}
}