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

  1. import java.awt.image.*;
  2.  
  3. public class \Name\ extends java.awt.image.IndexColorModel
  4.    {
  5.    public \Name\ (int ABitCount, int ASize, byte AReds[], byte AGreens[], byte ABlues[])
  6.       {
  7.       super (ABitCount, ASize, AReds, AGreens, ABlues);
  8.       }
  9.    public \Name\ (int ABitCount, int ASize, byte AReds[], byte AGreens[], byte ABlues[], int AIndex)
  10.       {
  11.       super (ABitCount, ASize, AReds, AGreens, ABlues, AIndex);
  12.       }
  13.    public \Name\ (int ABitCount, int ASize, byte AReds[], byte AGreens[], byte ABlues[], byte AValues[])
  14.       {
  15.       super (ABitCount, ASize, AReds, AGreens, ABlues, AValues);
  16.       }
  17.    public \Name\ (int ABitCount, int ASize, byte ACMap[], int AStart, boolean AHashAlpha)
  18.       {
  19.       super (ABitCount, ASize, ACMap, AStart, AHashAlpha);
  20.       }
  21.    public \Name\ (int ABitCount, int ASize, byte ACMap[], int AStart, boolean AHashAlpha, int AIndex)
  22.       {
  23.       super (ABitCount, ASize, ACMap, AStart, AHashAlpha, AIndex);
  24.       }
  25.    }
  26.  
  27.