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