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

  1. import java.awt.*;
  2.  
  3. public class \Name\ extends java.awt.GridLayout
  4.    {
  5.    public \Name\ (int ARows, int AColumns)
  6.       {
  7.       super (ARows, AColumns);
  8.       }
  9.    public \Name\ (int ARows, int AColumns, int AHGap, int AVGap)
  10.       {
  11.       super (ARows, AColumns, AHGap, AVGap);
  12.       }
  13.    }
  14.