home *** CD-ROM | disk | FTP | other *** search
- 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);
- }
- }
-
-