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

  1. import java.awt.*;
  2.  
  3. public class \Name\ extends java.awt.FlowLayout
  4.    {
  5.    public \Name\ ()
  6.       {
  7.       super ();
  8.       }
  9.    public \Name\ (int AAlignment)
  10.       {
  11.       super (AAlignment);
  12.       }
  13.    public \Name\ (int AAlignment, int AHGap, int AVGap)
  14.       {
  15.       super (AAlignment, AHGap, AVGap);
  16.       }
  17.    }
  18.