home *** CD-ROM | disk | FTP | other *** search
/ Internet Gallery / INTERGAL.bin / intergal / prgs / idv21 / data.z / ColorModel.pre < prev    next >
Text File  |  1995-10-08  |  571b  |  30 lines

  1. import java.awt.image.*;
  2.  
  3. public class \Name\ extends java.awt.image.ColorModel
  4.    {
  5.    public \Name\ (int ABitCount)
  6.       {
  7.       super (ABitCount);
  8.       }
  9.    public int getRed (int pixel)
  10.       {
  11.       //Add your code here
  12.       return 0;
  13.       } 
  14.    public int getGreen (int pixel)
  15.       {
  16.       //Add your code here
  17.       return 0;
  18.       } 
  19.    public int getBlue (int pixel)
  20.       {
  21.       //Add your code here
  22.       return 0;
  23.       } 
  24.     public int getAlpha (int pixel)
  25.       {
  26.       //Add your code here
  27.       return 0;
  28.       } 
  29.    }
  30.