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

  1. import java.awt.image.*;
  2. import java.util.*;
  3.  
  4. public class \Name\ extends java.awt.image.MemoryImageSource
  5.    {
  6.    public \Name\ (int AWidth, int AHeight, ColorModel AModel, byte APixels[], int AOffset, int AScan)
  7.       {
  8.       super (AWidth, AHeight, AModel, APixels, AOffset, AScan);
  9.       }
  10.    public \Name\ (int AWidth, int AHeight, ColorModel AModel, byte APixels[], int AOffset, int AScan, Hashtable ATable)
  11.       {
  12.       super (AWidth, AHeight, AModel, APixels, AOffset, AScan, ATable);
  13.       }
  14.    public \Name\ (int AWidth, int AHeight, ColorModel AModel, int APixels[], int AOffset, int AScan)
  15.       {
  16.       super (AWidth, AHeight, AModel, APixels, AOffset, AScan);
  17.       }
  18.    public \Name\ (int AWidth, int AHeight, ColorModel AModel, int APixels[], int AOffset, int AScan, Hashtable ATable)
  19.       {
  20.       super (AWidth, AHeight, AModel, APixels, AOffset, AScan, ATable);
  21.       }
  22.    public \Name\ (int AWidth, int AHeight, int APixels[], int AOffset, int AScan)
  23.       {
  24.       super (AWidth, AHeight, APixels, AOffset, AScan);
  25.       }
  26.    public \Name\ (int AWidth, int AHeight, int APixels[], int AOffset, int AScan, Hashtable ATable)
  27.       {
  28.       super (AWidth, AHeight, APixels, AOffset, AScan, ATable);
  29.       }
  30.    }
  31.