home *** CD-ROM | disk | FTP | other *** search
- import java.awt.*;
-
- public class \Name\ extends java.awt.Rectangle
- {
- public \Name\ ()
- {
- super ();
- }
- public \Name\ (int AWidth, int AHeight)
- {
- super (AWidth, AHeight);
- }
- public \Name\ (int ALeft, int ATop, int AWidth, int AHeight)
- {
- super (ALeft, ATop, AWidth, AHeight);
- }
- public \Name\ (Point APoint)
- {
- super (APoint);
- }
- public \Name\ (Point AStart, Dimension ASize)
- {
- super (AStart, ASize);
- }
- public \Name\ (Dimension ASize)
- {
- super (ASize);
- }
- }
-