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

  1. import java.awt.*;
  2.  
  3. public class \Name\ extends java.awt.Scrollbar
  4.    {
  5.    public \Name\ ()
  6.       {
  7.       super ();
  8.       }
  9.    public \Name\ (int AOrientation)
  10.       {
  11.       super (AOrientation);
  12.       }
  13.    public \Name\ (int AOrientation, int AValue, int APageSize, int AMin, int AMax)
  14.       {
  15.       super (AOrientation, AValue, APageSize, AMin, AMax);
  16.       }
  17.    }
  18.