home *** CD-ROM | disk | FTP | other *** search
- import java.awt.*;
-
- public class \Name\ extends java.awt.TextArea
- {
- public \Name\ ()
- {
- super ();
- }
- public \Name\ (int ARowCount, int AColumnCount)
- {
- super (ARowCount, AColumnCount);
- }
- public \Name\ (String AText)
- {
- super (AText);
- }
- public \Name\ (String AText, int ARowCount, int AColumnCount)
- {
- super (AText, ARowCount, AColumnCount);
- }
- }
-