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

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