home *** CD-ROM | disk | FTP | other *** search
- import java.awt.image.*;
- import java.util.*;
-
- public class \Name\ extends java.awt.image.MemoryImageSource
- {
- public \Name\ (int AWidth, int AHeight, ColorModel AModel, byte APixels[], int AOffset, int AScan)
- {
- super (AWidth, AHeight, AModel, APixels, AOffset, AScan);
- }
- public \Name\ (int AWidth, int AHeight, ColorModel AModel, byte APixels[], int AOffset, int AScan, Hashtable ATable)
- {
- super (AWidth, AHeight, AModel, APixels, AOffset, AScan, ATable);
- }
- public \Name\ (int AWidth, int AHeight, ColorModel AModel, int APixels[], int AOffset, int AScan)
- {
- super (AWidth, AHeight, AModel, APixels, AOffset, AScan);
- }
- public \Name\ (int AWidth, int AHeight, ColorModel AModel, int APixels[], int AOffset, int AScan, Hashtable ATable)
- {
- super (AWidth, AHeight, AModel, APixels, AOffset, AScan, ATable);
- }
- public \Name\ (int AWidth, int AHeight, int APixels[], int AOffset, int AScan)
- {
- super (AWidth, AHeight, APixels, AOffset, AScan);
- }
- public \Name\ (int AWidth, int AHeight, int APixels[], int AOffset, int AScan, Hashtable ATable)
- {
- super (AWidth, AHeight, APixels, AOffset, AScan, ATable);
- }
- }
-