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

  1. import java.awt.*;
  2.  
  3. public class \Name\ extends java.awt.TextArea
  4.    {
  5.    public \Name\ ()
  6.       {
  7.       super ();
  8.       }
  9.    public \Name\ (int ARowCount, int AColumnCount)
  10.       {
  11.       super (ARowCount, AColumnCount);
  12.       }
  13.    public \Name\ (String AText)
  14.       {
  15.       super (AText);
  16.       }
  17.    public \Name\ (String AText, int ARowCount, int AColumnCount)
  18.       {
  19.       super (AText, ARowCount, AColumnCount);
  20.       }
  21.    }
  22.