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

  1. import java.awt.*;
  2.  
  3. public class \Name\ extends java.awt.Rectangle
  4.    {
  5.    public \Name\ ()
  6.       {
  7.       super ();
  8.       }
  9.    public \Name\ (int AWidth, int AHeight)
  10.       {
  11.       super (AWidth, AHeight);
  12.       }
  13.    public \Name\ (int ALeft, int ATop, int AWidth, int AHeight)
  14.       {
  15.       super (ALeft, ATop, AWidth, AHeight);
  16.       }
  17.    public \Name\ (Point APoint)
  18.       {
  19.       super (APoint);
  20.       }
  21.    public \Name\ (Point AStart, Dimension ASize)
  22.       {
  23.       super (AStart, ASize);
  24.       }
  25.    public \Name\ (Dimension ASize)
  26.       {
  27.       super (ASize);
  28.       }
  29.    }
  30.